-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
60 lines (48 loc) · 1.21 KB
/
Gemfile
File metadata and controls
60 lines (48 loc) · 1.21 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
60
source 'https://rubygems.org'
gem 'rails', '3.2.0'
gem 'heroku'
gem 'jquery-rails', '>= 1.0.12'
gem 'devise'
gem 'simple-rss'
gem 'twitter'
gem 'github_api'
gem 'haml'
gem 'rest-client'
gem 'hpricot'
gem 'negative-captcha', :git => 'git://github.com/stefants/negative-captcha.git'
gem 'delayed_job_active_record'
gem 'hirefire'
# Backbone helper (mostly used for js libs)
gem 'rails-backbone'
# Faster web server (run -> rails server thin start)
gem 'thin'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'sqlite3'
gem 'faker', '1.0.1'
gem 'jasminerice'
# Guard setup
# Install chrome ext: https:/chrome.google.com/extensions/detail/jnihajbhpnppcggbcgedagnkighmdlei
# bundle exec guard
gem 'guard'
# Guard inits
gem 'guard-livereload'
gem 'guard-rspec'
end
group :test do
gem 'sqlite3'
gem 'rspec', '2.8.0'
gem 'rspec-rails', '2.8.1'
gem 'factory_girl_rails', '1.6.0'
end
group :production do
gem 'pg'
end