-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (59 loc) · 1.28 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
59
60
61
62
63
64
65
66
67
68
69
source 'https://rubygems.org'
gem 'rails', '4.1.5'
gem 'pg'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'bourbon'
gem 'jbuilder', '~> 2.0'
gem 'activerecord-session_store'
gem "haml"
gem "haml-rails"
gem 'haml_coffee_assets', git: "https://github.com/netzpirat/haml_coffee_assets"
gem 'execjs'
gem 'css_splitter'
gem "browser"
gem 'devise', '~> 3.3.0'
gem 'cancancan'
gem "stamp", "~> 0.4.0"
gem 'stamp-i18n'
gem 'rails-i18n'
gem 'kaminari'
gem 'http_accept_language'
gem 'capistrano', '~> 3.2.1'
gem 'capistrano-rails', '~> 1.1.1'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano-rbenv'
group :production, :development do
gem 'redis'
gem "redis-store", :require => "redis-store"
gem 'redis-rails'
end
group :test, :development do
gem 'pry'
gem 'pry-doc'
gem 'pry-rails'
gem "timecop"
gem 'factory_girl_rails'
gem "rspec-rails", '~> 2.99'
end
group :test do
gem 'launchy'
gem 'database_cleaner'
gem "fuubar"
gem "capybara"
gem 'poltergeist'
gem 'cucumber-rails', :require => false
gem "headless"
end
group :development do
gem 'spring'
gem 'quiet_assets'
gem "better_errors"
gem "binding_of_caller"
gem "spring-commands-rspec"
gem "spring-commands-cucumber"
end
group :doc do
gem 'sdoc', '~> 0.4.0'
end