-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
50 lines (42 loc) · 1.05 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
source 'https://rubygems.org'
gem 'rails', '3.2.20'
#Retarded Windows doesn't recognize the ruby command
ruby '1.9.3'
# gem "bootstrap-sass", '2.0.4.0'
gem 'foundation-rails', '5.4.5.0'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'multi_json', '1.3.4'
gem 'thin', '1.5.1'
gem 'haml', '4.0.5'
gem 'haml-rails', '0.4'
gem 'jquery-rails', '2.2.2'
group :development, :test do
gem 'sqlite3', '1.3.5'
gem 'rspec-rails', '2.12.2'
end
group :development do
gem 'annotate', '2.6.1'
gem 'heroku', '2.39.3'
gem 'better_errors', '0.9.0'
gem 'binding_of_caller', '0.7.2'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass', '3.2.13'
gem 'sass-rails', '3.2.6'
gem 'coffee-rails', '3.2.2'
gem 'uglifier', '2.4.0'
end
group :test do
gem 'capybara', '2.0.2'
gem 'launchy', '2.1.2'
gem 'database_cleaner', '0.9.1'
gem 'factory_girl_rails', '4.1.0'
gem 'rspec-tag_matchers', '0.1.2'
end
group :production do
gem 'pg', '0.12.2'
gem 'rails_12factor', '0.0.2'
end
gem 'newrelic_rpm', '3.5.5.38'