-
-
Save dchelimsky/457034 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Gemfile | |
source 'http://rubygems.org' | |
gem 'acts_as_list', '0.1.2' | |
gem 'acts_as_singleton', :git => 'git://github.com/stephencelis/acts_as_singleton.git' | |
gem 'authlogic', :git => 'git://github.com/odorcicd/authlogic.git', :branch => 'rails3' | |
gem 'aws-s3', '0.6.2' | |
gem 'cancan', '1.1.1' | |
gem 'delayed_job', '2.0.3' | |
gem 'database_cleaner', '0.5.2' | |
gem 'dispatcher', '0.0.1' | |
gem 'factory_girl', :git => 'git://github.com/thoughtbot/factory_girl.git', :branch => 'rails3' | |
gem 'fastercsv', '1.5.3' | |
gem "formtastic", :git => "git://github.com/justinfrench/formtastic.git", :branch => "rails3" | |
gem 'hoptoad_notifier', '2.2.6' | |
gem 'i18n', '0.4.1' | |
gem 'haml', '3.0.10' | |
gem 'httparty', '0.5.2' | |
gem 'json_pure', '1.4.3' | |
gem 'mad_mimi_mailer', '0.1.2.1' | |
gem 'mini_magick', '1.2.5' | |
gem 'mysql', '2.8.1' | |
gem 'paperclip', :git => "git://github.com/thoughtbot/paperclip.git" | |
gem "rails", "3.0.0.beta4" | |
gem 'random_data', '1.5.1' | |
gem 'ruby-debug', '0.10.3' | |
gem 'sanitize', '1.2.1' | |
gem 'scoped_search', '2.2.0' | |
gem "will_paginate", :git => "http://github.com/mislav/will_paginate.git", :branch => "rails3" | |
group :development, :test do | |
gem 'nokogiri', '1.4.2' | |
gem 'cucumber', '0.8.3' | |
gem 'cucumber-rails', '0.3.2' | |
gem 'rspec-rails', '2.0.0.beta.14.2' | |
gem 'webrat', '0.7.1' | |
end | |
# spec/spec_helper.rb | |
# from the project root directory. | |
ENV["RAILS_ENV"] ||= 'test' | |
require File.expand_path("../../config/environment", __FILE__) | |
require 'rspec/rails' | |
require 'factory_girl' | |
require 'random_data' | |
require 'authlogic/test_case' | |
# Requires supporting files with custom matchers and macros, etc, | |
# in ./support/ and its subdirectories. | |
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} | |
Rspec.configure do |config| | |
# == Mock Framework | |
# | |
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line: | |
# | |
# config.mock_with :mocha | |
# config.mock_with :flexmock | |
# config.mock_with :rr | |
config.mock_with :rspec | |
# If you'd prefer not to run each of your examples within a transaction, | |
# uncomment the following line. | |
# config.use_transactional_examples = false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment