Created
March 18, 2014 20:50
-
-
Save kalupa/9629281 to your computer and use it in GitHub Desktop.
Sub-folder rspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd rails-app; bundle install; bundle exec rspec spec | |
# installs rspec 2.14.8 | |
# runs specs in `rails-app/spec` | |
................^C | |
cd .. | |
cd rails-app/autosmokes; bundle install; bundle exec rspec spec | |
# installs rspec 2.8.0 from dependencies | |
# also runs specs in `rails-app/spec` | |
................ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rails-app/Gemfile | |
source 'https://rubygems.org' | |
gem 'rails', '3.2.17' | |
gem 'aws-sdk' | |
gem 'crack', '~> 0.3.2' | |
gem 'haml-rails' | |
gem 'mysql2', '~> 0.3.11' | |
gem 'json' | |
gem 'fuubar' | |
gem 'intercom' | |
gem 'intercom-rails' | |
gem 'markdown-rails' | |
gem 'redcarpet' | |
gem 'devise', '~> 2.2.3' | |
gem 'cocaine', '~> 0.3.2' | |
gem 'jwt' | |
gem 'multi_xml', '0.5.2' | |
gem 'bcrypt-ruby' | |
gem 'jquery-fileupload-rails' | |
gem 'psych', '~> 1.3.4' | |
group :asset do | |
gem 'coffee-rails' | |
gem 'sass-rails' | |
gem 'uglifier' | |
end | |
group :development, :test do | |
gem 'jasmine', '1.3.2' | |
gem 'jasmine-headless-webkit', :git => 'https://github.com/sdizier/jasmine-headless-webkit.git', :branch => '0.8.1' | |
gem 'guard-jasmine-headless-webkit' | |
end | |
group :development do | |
gem 'awesome_print' | |
gem 'better_errors' | |
gem 'brakeman' | |
gem 'bumbler' | |
gem 'capistrano', '~> 2.15.0' | |
gem 'capistrano-ext', '~> 1.2.1' | |
gem 'commands' | |
gem 'compass', '~> 0.12.2' | |
gem 'debugger', '~> 1.6.0' | |
gem 'guard-livereload' | |
gem 'letter_opener', '~> 0.0.2' | |
gem 'meta_request' | |
gem 'oily_png' | |
gem 'passenger' | |
gem 'rb-fsevent' | |
gem 'rb-readline', '~> 0.4.2' | |
gem 'ruby-prof' | |
gem 'thin' | |
end | |
group :test do | |
gem 'capybara' | |
gem 'codeclimate-test-reporter', require: false | |
gem 'database_cleaner' | |
gem 'factory_girl', '~> 4.2.0' | |
gem 'guard-spork' | |
gem 'guard-rspec' | |
gem 'launchy' | |
gem 'no_peeping_toms' | |
gem 'rspec-html-matchers', '~> 0.4.1' | |
gem 'rspec-mocks', '~> 2.14.1' | |
gem 'rspec-rails', '~> 2.14.0' | |
gem 'rspec-cells', '~> 0.1.7' | |
gem 'simplecov', require: false | |
gem 'spork' | |
gem 'timecop', '~> 0.6.2.2' | |
gem 'vcr', '~> 2.8.0' | |
gem 'webmock', '~> 1.17.0' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment