forked from magnusvk/counter_culture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
58 lines (48 loc) · 1.25 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
49
50
51
52
53
54
55
56
57
58
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", ">= 3.0.0"
gem "activesupport", ">= 3.0.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, ""
">= 3.1.0"
else
ENV["RAILS_VERSION"]
end
gem "rails", rails
gem "rspec", "~> 3.0"
gem "awesome_print"
gem "timecop"
# To test integrations
# Both the paranoia and discard integrations require Rails > 4.2
# Actually parsing the resolved rails version is complicated, so
# we're basing this on the incompatible Rails version strings from
# .travis.yml
unless ['~> 3.2.0', '~> 4.0.0', '~> 4.1.0'].include?(rails)
gem "discard"
gem "paranoia"
end
if RUBY_VERSION < "2.3.0"
gem "paper_trail", "< 9.0.0"
else
gem "paper_trail"
end
end
group :development do
gem "rdoc", "~> 3.12"
gem "bundler", ">= 1.2.0"
gem "jeweler", "~> 2.1"
end
group :test do
gem "sqlite3"
gem "rspec-extra-formatters"
gem "database_cleaner", ">= 1.1.1"
end