-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
80 lines (60 loc) · 2.39 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
77
78
79
80
source 'http://rubygems.org'
#gem 'rails', '3.1.1'
#gem 'rack', '1.3.3' #1.3.4 gives warning: already initialized constant WFKV_
gem 'rails', '3.2.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#gem 'sqlite3'
gem 'mysql'
gem 'rack-active_record_status', :require => 'rack/active_record_status'
gem 'flutie'
gem 'fog'
# http://stackoverflow.com/questions/6282307/rails-3-1-execjs-and-could-not-find-a-javascript-runtime
gem 'therubyracer'
# 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"
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'haml' # it replaces erb making views much cleaner
gem 'haml-rails', :group => :development
gem 'simple_form' # Cleanest way to write a form view
gem 'haml-coderay' # provides syntax highlighting for certain programming languages
gem 'devise' # User authentication
gem 'chef', '>= 0.10.4' # opscode authentication
gem "rubycas-client" # Not Rails 3 compatible - patched in application.rb
# once a client library gem is created, you can replace the below ones
gem 'yajl-ruby'
gem 'mauth_signer', :git => 'git@github.com:mdsol/mauth_signer.git', :ref => '4e03b8e'
#gem 'eureka-client', :git => 'git@github.com:mdsol/eureka-client.git', :ref => 'c4c98a4'
gem 'prawn' # pdf generator
gem 'active_pdftk', :git => 'git://github.com/tcocca/active_pdftk.git'
gem "newrelic_rpm"
group :development do
gem 'ruby-debug19'
gem "awesome_print"
end
group :test do
gem 'database_cleaner'
gem 'rails3-generators' #mainly for factory_girl & simple_form at this point
gem 'rspec-rails'
gem 'factory_girl_rails' # mocking
gem 'cucumber-rails'
gem "pickle" # gives you a lot of already defined cucumber steps
gem 'capybara'
gem 'guard'
gem 'growl' # guard uses to notify
#gem 'growl_notify' # if used, guard doesn't show the errors
gem 'guard-cucumber'
gem 'rb-fsevent' # required by guard for notifications
gem "guard-rspec" # run rspec when a spec is saved
gem "launchy" # show the web page in case of error
gem "spork", "> 0.9.0.rc" # Improve loading times during testing
gem "guard-spork"
gem 'fakeweb'
#gem "vcr", "=2.0.0.beta1" #using beta2 you get: save_databag_item-databag_doesnt_exist.yml does not appear to be a valid VCR 2.0 cassette
gem "vcr", ">2.0.0.rc"
end