forked from browsermedia/browsercms
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (22 loc) · 718 Bytes
/
Gemfile
File metadata and controls
29 lines (22 loc) · 718 Bytes
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
source 'http://rubygems.org'
# Load this project as a gem.
gemspec
gem 'jquery-rails'
gem 'rack', '1.3.3' # At least until 1.3.5 is out. Avoids warnings about already defined constants.
gem "mysql2"
gem 'yard', :groups=>[:development, :test]
gem 'bluecloth', :groups=>[:development, :test] # For YARD
group :test do
gem 'factory_girl_rails', '1.0.1'
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'
end