-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
113 lines (80 loc) · 3.38 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
source 'http://rubygems.org'
#source "http://gems.github.com"
# DEFAULT
gem 'smartname', '0.1.8'
gem 'rails', '~> 3.2.9'
gem 'htmlentities', '~> 4.3'
gem 'uuid', '~> 2.3'
gem 'paperclip', '~> 2.8'
gem 'rmagick', '~> 2.13'
gem "recaptcha", "~> 0.3"
gem 'xmlscan', '~> 0.3'
# the following two could be safely excluded on a local install (but are not known to cause problems)
gem "rubyzip", "~> 0.9" # only required in module. should be separated out.
gem "airbrake", "~> 3.1"
# DATABASE
# need at least one of the following
group :mysql do
gem "mysql2", "~> 0.3"
end
group :postgres do
gem 'pg', '~>0.12.2'
# if using 1.8.7 or ree and having no luck with the above, try:
# gem 'postgres', '~>0.7.9.2008.01.28'
end
#gem 'sqlite3-ruby', :require => 'sqlite3', :group=>'sqlite'
gem 'dalli', :group => :memcache
# These should only be needed if you're developing new JS / CSS. It's all pre-compiled for production
group :assets do
gem 'sass-rails', "~> 3.1" # pretty code; compiles to CSS
gem 'coffee-rails', "~> 3.1" # pretty code; compiles to JS
gem 'uglifier' # makes pretty code ugly again. compresses js/css for fast loading
gem 'jquery-rails', '~> 2.1.4' # main js framework, along with rails-specific unobtrusive lib
gem "jquerymobile-rails", "~> 0.2"
gem 'tinymce-rails', '~> 3.4' # wysiwyg editor
# execjs is necessary for developing coffeescript. mac users have execjs built-in; don't need this one
gem 'therubyrhino', :platform=>:ruby # :ruby is MRI rubies, so if you use a mac ruby ...
end
group :profile do
gem 'ruby-prof', '~>0.12.1' # profiling
#gem 'test-unit' #was causing errors after cucumber runs.
end
group :test, :development do
gem 'rspec-rails', "~> 2.6" # behavior-driven-development suite
gem 'rails-dev-tweaks', '~> 0.6' # dramatic speeds up asset loading, among other tweaks
# gem 'jasmine-rails'
end
group :test do
gem 'cucumber-rails', '~> 1.3', :require=>false # feature-driven-development suite
gem 'capybara', '~> 1.1' # note, selectors were breaking when we used 2.0.1
gem 'launchy' # lets cucumber launch browser windows
gem 'timecop', '=0.3.5' # not clear on use/need. referred to in shared_data.rb
# NOTE: had weird errors with timecop 0.4.4. would like to update when possible
gem 'spork', '>=0.9'
gem 'rr'#, '=1.0.0'
gem 'email_spec' #
gem 'database_cleaner', '~> 0.7' # used by cucumber for db transactions
gem 'turn', "~>0.8.3", :require => false # Pretty printed test output. (version constraint is to avoid minitest requirement)
gem 'minitest'
#windows stuff
gem 'win32console', '~> 1.3', :platforms => ['mingw', 'mswin']
gem 'win32-process', '~> 0.6', :platforms => ['mingw', 'mswin']
end
group :debug do
gem 'rdoc'
case RUBY_VERSION
when /^1\.9\.3-p0/
gem 'linecache19', '~>0.5.13'
gem 'ruby-debug-base19x', '~> 0.11.30.pre4'
when /^1\.9/
gem 'ruby-debug19', :require => 'ruby-debug'
when /^1\.8/
gem 'ruby-debug'
end
end
# ~~~~~~~ #
# HOSTING #
# ~~~~~~~ #
#group :hosting do
# gem 'newrelic_rpm', '>=2.14.1'
#end