Skip to content

Commit

Permalink
Merge remote branch 'aavalam/rails3' into rails3
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Aug 23, 2010
2 parents 007c58f + 263e285 commit 659728f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ index/**/*
*.tmproj
*.autobackupbyrefinery.*
/refinerycms-*.gem
.autotest

# Mac
.DS_Store
Expand Down
12 changes: 9 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,15 @@ gem 'dragonfly', :git => 'git://github.com/parndt/dragonfly.git',

# REFINERY CMS DEVELOPMENT ====================================================

group :test do
group :test, :development do
gem 'json_pure', '= 1.4.6', :require => 'json/pure'

gem 'rspec', (RSPEC_VERSION = '~> 2.0.0.beta.19')
gem 'rspec-core', RSPEC_VERSION, :require => 'rspec/core'
gem 'rspec-expectations', RSPEC_VERSION, :require => 'rspec/expectations'
gem 'rspec-mocks', RSPEC_VERSION, :require => 'rspec/mocks'
gem 'rspec-rails', RSPEC_VERSION
# gem 'rspec-rails', RSPEC_VERSION
gem 'rspec-rails', '>= 2.0.0.beta.19'
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
Expand All @@ -88,4 +89,9 @@ group :test do
gem 'ruby-prof'
end

# END REFINERY CMS DEVELOPMENT =================================================
# END REFINERY CMS DEVELOPMENT =================================================

# Added by vhgiii
gem 'autotest-rails'
gem 'autotest'

14 changes: 14 additions & 0 deletions autotest.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
### uncomment any of the following requires applicable for your system
### and then copy this to .autotest if you are using the ZenTest autotest.
# require "autotest/restart"
# require "test_notifier/runner/autotest"
# require "redgreen/autotest"
# require "autotest/timestamp"

# adds exceptions from .gitignore file, please modify exceptions there!
imported_exceptions = IO.readlines('.gitignore').inject([]) {|acc, line| acc << line.strip if line.to_s[0] != '#' && line.strip != ''; acc }
Autotest.add_hook :initialize do |autotest|
imported_exceptions.each do |exception|
autotest.add_exception(exception)
end
end

0 comments on commit 659728f

Please sign in to comment.