-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
59 lines (51 loc) · 1.53 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
source 'https://rubygems.org'
ruby '2.1.5'
gem 'rails', '3.2.12'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails', '2.1.3'
gem 'therubyracer'
gem 'pg'
gem 'haml-rails'
gem 'haml'
gem "thin", ">= 1.6.0"
gem "omniauth", ">= 1.1.1"
gem "omniauth-google-oauth2"
gem "simple_form", ">= 2.0.4"
gem "figaro", ">= 0.5.3"
gem "quiet_assets", ">= 1.0.1", :group => :development
gem "better_errors", ">= 0.3.2", :group => :development
gem "binding_of_caller", ">= 0.6.8", :group => :development
gem "factory_girl_rails", ">= 4.2.0", :group => [:development, :test]
gem "zeus", :group => [:development, :test]
gem 'dotenv-rails', :groups => [:development, :test, :production]
gem 'activeadmin'
gem "meta_search", '>= 1.1.0.pre'
group :test do
gem 'timecop'
gem 'pry'
gem 'shoulda-matchers'
gem 'mocha', require: 'mocha/setup'
end
group :development, :test do
gem 'guard'
gem 'guard-rspec'
gem 'guard-jasmine'
gem 'libnotify', :require => RUBY_PLATFORM =~ /linux/i ? 'libnotify' : false
gem 'growl', :require => RUBY_PLATFORM =~ /darwin/i ? 'growl' : false
gem 'rb-inotify', :require => RUBY_PLATFORM =~ /linux/i ? 'rb-inotify' : false
gem 'rb-fsevent', :require => RUBY_PLATFORM =~ /darwin/i ? 'rb-fsevent' : false
gem 'sqlite3'
gem "jasminerice", :git => 'https://github.com/bradphelan/jasminerice.git'
gem 'fuubar'
gem 'rspec-rails'
end
gem "ember-rails"
gem 'bootstrap3-wip-rails'
gem "whitespace"
#group :production do
# gem 'rails_12factor'
#end