forked from magnusvk/counter_culture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
48 lines (41 loc) · 1.13 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
source "https://rubygems.org"
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"
gem "after_commit_action", "~> 1.0"
gem "activerecord", ">= 4.2.0"
gem "activesupport", ">= 4.2.0"
# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development, :test do
gem "rake"
rails = case ENV["RAILS_VERSION"]
when "master"
{ github: "rails/rails" }
when nil, ""
">= 4.2.0"
else
ENV["RAILS_VERSION"]
end
gem "rails", rails
gem "rspec", "~> 3.0"
gem "awesome_print"
gem "timecop"
# To test integrations
gem "discard"
gem "paranoia"
gem "paper_trail"
end
group :development do
gem "rdoc", "~> 3.12"
gem "bundler", ">= 1.2.0"
gem "jeweler", "~> 2.1"
end
group :test do
# something's going on with sqlite 1.4 that doesn't work with ActiveRecord, see
# https://stackoverflow.com/questions/54527277/cant-activate-sqlite3-1-3-6-already-activated-sqlite3-1-4-0
# this seems like a hack but it works, so...
gem 'sqlite3', '~> 1.3.13'
gem "rspec-extra-formatters"
gem "database_cleaner", ">= 1.1.1"
end