-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (41 loc) · 816 Bytes
/
Gemfile
File metadata and controls
46 lines (41 loc) · 816 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
41
42
43
44
45
46
source 'https://rubygems.org'
gem 'rails', '4.2.4'
gem 'sqlite3'
gem 'sass-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'inherited_resources'
gem 'haml-rails'
gem 'bootstrap-sass'
gem 'simple_form'
gem 'devise'
gem 'feedjira'
gem 'faraday'
gem 'faraday_middleware'
gem 'faraday_middleware-rss'
gem 'truncate_html'
gem 'draper'
gem 'twitter'
gem 'twitter-text'
gem 'redcarpet'
gem 'friendly_id'
group :test, :development do
gem 'database_cleaner'
gem 'shoulda-matchers'
gem 'email_spec'
gem 'pry-nav'
end
group :test do
gem 'spinach-rails'
gem 'spinach', '~> 0.8.9'
gem 'rspec', '~> 2.13.0'
end
group :production do
gem 'pg'
end
group :deployment do
gem 'capistrano', '~> 3.1.0'
gem 'capistrano-rails', '~> 1.1.0'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano-rbenv', '~> 2.0'
end