-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
59 lines (55 loc) · 1.23 KB
/
Gemfile
File metadata and controls
59 lines (55 loc) · 1.23 KB
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
source "https://rubygems.org"
ruby "2.2.1"
gem "rails", "4.2.1"
gem "sass-rails", "~> 5.0"
gem "uglifier", ">= 1.3.0"
gem "coffee-rails", "~> 4.1.0"
gem "jquery-rails"
gem "turbolinks"
gem "jbuilder", "~> 2.0"
gem "bootstrap-sass"
gem "devise"
gem "haml-rails"
gem "mysql2"
gem "simple_form"
gem "httparty"
gem "awesome_print"
group :development do
gem "better_errors"
gem "capistrano", "~> 3.0.1"
gem "capistrano-bundler"
gem "capistrano-rails", "~> 1.1.0"
gem "capistrano-rails-console"
gem "capistrano-rvm", "~> 0.1.1"
gem "guard-bundler"
gem "guard-rails"
gem "guard-rspec"
gem "html2haml"
gem "hub", require: nil
gem "quiet_assets"
gem "rails_layout"
gem "rb-fchange", require: false
gem "rb-fsevent", require: false
gem "rb-inotify", require: false
gem "spring-commands-rspec"
# To annotate only models: annotate --exclude tests,fixtures,factories
gem "annotate", ">=2.6.0"
gem "erb2haml"
end
group :development, :test do
gem "ruby-debug-passenger"
gem "byebug"
gem "web-console", "~> 2.0"
gem "spring"
gem "factory_girl_rails"
gem "faker"
gem "passenger"
gem "rspec-rails"
gem "rubocop"
end
group :test do
gem "capybara"
gem "database_cleaner"
gem "launchy"
gem "selenium-webdriver"
end