forked from browsermedia/browsercms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
34 lines (27 loc) · 930 Bytes
/
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
source 'http://rubygems.org'
# Load this project as a gem.
gemspec
gem "mysql2"
gem 'yard', :groups=>[:development, :test]
gem 'bluecloth', :groups=>[:development, :test] # For YARD
# gem 'query_reviewer' # Enable for performance tuning
gem "thin" # To avoid annoying Ruby 1.9.3/Rails/Webrick warnings - See http://stackoverflow.com/questions/7082364/what-does-warn-could-not-determine-content-length-of-response-body-mean-and-h
# For testing behavior in production
group :production do
gem 'uglifier'
end
group :test do
gem 'factory_girl_rails'
gem 'test-unit', '2.1.1'
# :require=>false allows mocha to correctly modify the test:unit code to add mock() and stub()
gem "mocha", '=0.9.8', :require=>false
gem "sqlite3-ruby", :require => "sqlite3"
# Cucumber and dependencies
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'launchy'
gem 'ruby-prof'
gem 'aruba'
end