-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
76 lines (64 loc) · 1.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
source 'https://rubygems.org'
gem 'rails', '4.0.4'
# gem 'rapped', path: "~/workspace/phallguy/rapped"
gem 'rapped', git: "[email protected]:phallguy/rapped.git"
gem 'jquery-rails'
gem 'less-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'therubyracer', platforms: :ruby
gem 'jbuilder', '~> 1.2'
gem 'omniauth-google-oauth2', '~> 0.2.5'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'omniauth-stackexchange'
gem "non-stupid-digest-assets"
gem 'mongoid', github: 'mongoid/mongoid'
gem 'moped', github: 'mongoid/moped'
gem "mongoid_slug", github: "digitalplaywright/mongoid-slug"
gem 'mongoid-tags-arent-hard'
gem 'rails_config'
gem 'haml'
gem 'kaminari'
gem 'cancan'
gem 'dalli'
gem 'diff-lcs'
gem 'nokogiri'
gem 'analytics-ruby', '~>1.0'
group :development, :test do
gem 'awesome_print', :require => false
gem 'spring'
gem 'byebug', github: "deivid-rodriguez/byebug"
gem 'pry-byebug', github: "deivid-rodriguez/pry-byebug"
gem 'ruby-prof'
end
group :development do
gem 'foreman'
# gem 'capi-sous', path: "~/Projects/phallguy/capi-sous"
gem 'capi-sous', git: "[email protected]:phallguy/capi-sous.git"
gem 'yard'
end
group :test do
gem 'rspec-rails'
gem 'rspec-mocks'
gem 'vcr', github: 'vcr/vcr'
gem 'growl'
gem 'factory_girl_rails'
gem 'capybara'
gem 'poltergeist'
gem 'capybara-screenshot'
gem 'launchy'
gem 'rb-fsevent'
gem 'guard'
gem 'guard-rspec'
gem 'guard-spring'
gem 'spring-commands-rspec'
gem 'rspec-http'
gem 'database_cleaner'
gem 'fakeweb'
gem 'timecop'
gem "json_spec"
end
# PRODUCTION
gem 'rack-handlers'
gem 'unicorn'