forked from agile-france/propile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (31 loc) · 673 Bytes
/
Gemfile
File metadata and controls
39 lines (31 loc) · 673 Bytes
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
source 'http://rubygems.org'
gem 'rails', '3.2.15'
gem "haml-rails"
gem "action-guard", "~> 1.2.0"
gem 'pg'
gem "recaptcha", :require => "recaptcha/rails"
gem 'prawn'
gem 'htmlentities'
group :test, :development do
gem 'dotenv-rails'
gem 'rspec-rails', '~> 2.9'
gem 'capybara'
gem 'poltergeist'
gem 'launchy'
end
group :test do
gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem "capybara"
gem 'guard-rspec'
gem 'database_cleaner'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'execjs'
gem 'therubyracer', :platform => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'bcrypt-ruby'