-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (35 loc) · 873 Bytes
/
Gemfile
File metadata and controls
40 lines (35 loc) · 873 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
39
40
source "https://rubygems.org"
gem "rails", "4.1.6"
gem "pg"
gem "sass-rails", "~> 4.0.3"
gem "uglifier", ">= 1.3.0"
gem "coffee-rails", "~> 4.0.0"
gem "jquery-rails"
gem "jbuilder", "~> 2.0"
gem "unicorn", "~> 4.8.3"
gem "bourbon", "~> 3.2.1"
gem "neat", "~> 1.5.1"
gem "simple_form", "3.1.0.rc2"
gem "haml-rails", "~> 0.5.3"
gem "redcarpet"
gem "email_validator"
gem "sidekiq"
group :development do
gem "spring"
gem "spring-commands-rspec"
gem "letter_opener", "~> 1.2.0"
gem "guard-rspec", "~> 4.3.1", require: false
gem "guard-bundler", require: false
end
group :development, :test do
gem "rspec-rails", "~> 3.1.0"
gem "factory_girl_rails", "~> 4.5.0"
gem "dotenv-rails", "~> 1.0.2"
end
group :test do
gem "shoulda-matchers", require: false
gem "capybara", "~> 2.4.3"
gem "codeclimate-test-reporter", require: nil
end
group :production do
end