mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
removes standalone_migrations, lazily creating DBs in tests
This commit is contained in:
parent
869d89730d
commit
4b5e1f2f0e
3 changed files with 0 additions and 8 deletions
1
Gemfile
1
Gemfile
|
@ -26,7 +26,6 @@ group :development do
|
||||||
gem 'mysql'
|
gem 'mysql'
|
||||||
gem 'mysql2'
|
gem 'mysql2'
|
||||||
gem 'pg'
|
gem 'pg'
|
||||||
gem "standalone_migrations" # https://github.com/thuss/standalone-migrations
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
|
|
|
@ -178,9 +178,6 @@ GEM
|
||||||
sqlite3 (1.3.6)
|
sqlite3 (1.3.6)
|
||||||
sqlite3-ruby (1.3.3)
|
sqlite3-ruby (1.3.3)
|
||||||
sqlite3 (>= 1.3.3)
|
sqlite3 (>= 1.3.3)
|
||||||
standalone_migrations (1.0.10)
|
|
||||||
activerecord (>= 3)
|
|
||||||
rake
|
|
||||||
stringex (1.1.0)
|
stringex (1.1.0)
|
||||||
thor (0.15.4)
|
thor (0.15.4)
|
||||||
tilt (1.3.3)
|
tilt (1.3.3)
|
||||||
|
@ -215,5 +212,4 @@ DEPENDENCIES
|
||||||
ruby-debug
|
ruby-debug
|
||||||
sequel (~> 3.21.0)
|
sequel (~> 3.21.0)
|
||||||
sqlite3-ruby
|
sqlite3-ruby
|
||||||
standalone_migrations
|
|
||||||
tzinfo
|
tzinfo
|
||||||
|
|
3
Rakefile
3
Rakefile
|
@ -34,9 +34,6 @@ RSpec::Core::RakeTask.new(:rcov) do |spec|
|
||||||
spec.rcov = true
|
spec.rcov = true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
require 'tasks/standalone_migrations'
|
|
||||||
|
|
||||||
begin
|
begin
|
||||||
require 'cucumber/rake/task'
|
require 'cucumber/rake/task'
|
||||||
Cucumber::Rake::Task.new(:features)
|
Cucumber::Rake::Task.new(:features)
|
||||||
|
|
Loading…
Reference in a new issue