forked from magnusvk/counter_culture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (37 loc) · 898 Bytes
/
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
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 the integration
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
gem "sqlite3"
gem "rspec-extra-formatters"
gem "database_cleaner", ">= 1.1.1"
end