forked from kinduff/ubuntufeed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (35 loc) · 691 Bytes
/
Copy pathGemfile
File metadata and controls
40 lines (35 loc) · 691 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', '3.2.10'
gem 'pg'
gem 'haml'
gem 'haml-rails'
gem 'jquery-rails'
gem 'feedzirra'
gem 'paperclip'
gem 'kaminari'
gem 'simple_form'
gem 'underscore-rails'
gem 'oauth'
gem 'twitter'
gem 'bitly'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'guard'
gem 'guard-livereload'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'sqlite3'
end
group :development, :test do
gem 'rspec-rails'
gem 'guard-rspec'
gem 'factory_girl_rails'
gem 'capybara'
gem 'nyan-cat-formatter'
end