forked from rubytaiwan/jobs.ruby.tw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
47 lines (40 loc) · 843 Bytes
/
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
source "https://rubygems.org"
gem "rails", "4.2.3"
gem "pg"
gem "eventmachine", "1.0.4"
gem "sass-rails"
gem "coffee-rails"
gem "jquery-rails"
gem "bootstrap-sass"
gem "libv8"
gem "therubyracer", platforms: :ruby
gem "uglifier"
gem "devise", "~> 3.3"
gem "babosa"
gem "rails_autolink"
gem "settingslogic"
gem "seo_helper"
gem "open_graph_helper"
gem "google_plus_helper"
gem "exception_notification"
gem "utf8-cleaner"
gem "rails_utils"
group :development do
gem "quiet_assets"
gem "capistrano", "~> 3.1"
gem "capistrano-rails", "~> 1.1"
gem "annotate"
gem "letter_opener"
gem "spring"
gem "spring-commands-rspec"
gem "pry-rails"
end
group :test do
gem "shoulda-matchers", require: false
end
group :test, :development do
gem "rspec-rails", ">= 3.3"
gem "simplecov"
gem "capybara"
gem "factory_girl_rails"
end