-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
75 lines (68 loc) · 1.47 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
source 'http://rubygems.org'
gem 'rails', '3.1.1'
gem 'pg'
gem 'jquery-rails'
gem "haml"
gem "sass"
gem "haml-rails"
gem "jquery-rails"
gem "simple_form"
gem 'decent_exposure', :git => 'git://github.com/mattvanhorn/decent_exposure'
gem 'draper'
gem 'omniauth-identity'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'state_machine'
gem 'rails3-jquery-autocomplete'
gem 'redis'
gem 'vanity'
gem 'sass-rails'
gem 'compass', '~> 0.12.alpha.3'
gem 'compass_twitter_bootstrap'
gem "faker"
gem 'newrelic_rpm'
gem 'postmark-rails'
gem 'analytical'
gem 'airbrake'
gem 'thin'
gem 'dalli'
gem "asset_sync"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem "hpricot"
gem "ruby_parser"
# gem 'ruby-graphviz', :require => 'graphviz' # For graphing of state-machines
end
group :tddium_ignore do
gem 'rb-fsevent'
gem "guard"
gem "guard-rspec"
gem "guard-cucumber"
gem "guard-spork"
gem "guard-bundler"
gem "guard-pow"
gem "pickler"
gem "growl"
end
group :development, :test do
gem "cucumber-rails"
gem "rspec-rails"
gem "shoulda-matchers"
gem "capybara"
gem "capybara-webkit"
gem "fabrication"
gem "database_cleaner"
gem "launchy"
gem "spork"
gem 'activerecord-nulldb-adapter', :git => 'git://github.com/mattvanhorn/nulldb'
gem 'email_spec'
# gem 'ruby-debug19'
gem 'timecop'
end
group :test do
gem "cover_me", :require => false
end