Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.0.0.beta #620

Merged
merged 21 commits into from
Feb 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2da1f49
begin development on v2.0.0.beta.
botandrose-machine Feb 1, 2020
e658c11
split all adapter gems into their own repos.
botandrose-machine Jan 31, 2020
0cf7816
add byebug for debugging.
botandrose-machine Feb 1, 2020
a593621
remove all deprecated code and get the specs passing again.
botandrose-machine Feb 1, 2020
eb80a78
drop support for older rubies, and add support for current rubies.
botandrose-machine Feb 1, 2020
4d50d88
modernize gemspec.
botandrose-machine Feb 1, 2020
22192c8
don't run cucumber tests in this repo, at least not yet.
botandrose-machine Feb 1, 2020
fa72e43
split gem into database_cleaner-core and database_cleaner metagem.
botandrose-machine Feb 1, 2020
00c212f
RIP mysql1 adapter.
botandrose-machine Feb 2, 2020
504b9de
modernize DC::Base specs.
botandrose-machine Feb 2, 2020
e90c54b
bump latest release version on README.
botandrose-machine Feb 2, 2020
2181127
fix gem loading situation.
botandrose-machine Feb 3, 2020
9c88241
remove extra line endings.
botandrose-machine Feb 3, 2020
5ab507c
reduce usage of bare subject on advice of rspec core team.
botandrose-machine Feb 4, 2020
33b8bb8
mark certain adapters as discontinued.
botandrose Feb 4, 2020
3f4d395
use class_double for a bit of extra reliability.
botandrose-machine Feb 4, 2020
422d762
add Micah Geisel to list of gem authors.
botandrose-machine Feb 7, 2020
7410730
test nil case for DC::Base#orm=.
botandrose-machine Feb 7, 2020
aa52404
core no longer knows what a valid adapter is.
botandrose-machine Feb 7, 2020
59c54ab
raise ArgumentError when DC[nil] is invoked or DC.orm = nil.
botandrose-machine Feb 14, 2020
d59d53a
rm Gemfile.lock from version control.
botandrose-machine Feb 14, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ examples/config/database.yml
spec/support/config.yml
tmp/*
!tmp/.keep
Gemfile.lock
.rbenv-version
.rvmrc
.ruby-version
.vagrant
.idea/
.byebug_history
22 changes: 4 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,13 @@
dist: trusty
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
botandrose marked this conversation as resolved.
Show resolved Hide resolved
- 2.4
- 2.5
- 2.6
- 2.7
before_install:
- gem install bundler -v 1.17.3
- | # cached install of Neo4j locally:
if [ ! -d neo4j-community-2.3.3/bin ];
then
wget dist.neo4j.org/neo4j-community-2.3.3-unix.tar.gz;
tar -xzf neo4j-community-2.3.3-unix.tar.gz;
sed -i.bak s/dbms.security.auth_enabled=true/dbms.security.auth_enabled=false/g neo4j-community-2.3.3/conf/neo4j-server.properties;
fi
before_script:
- neo4j-community-2.3.3/bin/neo4j start
- bin/setup
services:
- redis-server
- mongodb
cache:
bundler: true
directories:
- neo4j-community-2.3.3

16 changes: 2 additions & 14 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
gemspec
gemspec name: "database_cleaner-core"

path "./adapters" do
gem "database_cleaner-active_record"
gem "database_cleaner-couch_potato"
gem "database_cleaner-data_mapper"
gem "database_cleaner-mongo"
gem "database_cleaner-mongoid"
gem "database_cleaner-mongo_mapper"
gem "database_cleaner-moped"
gem "database_cleaner-neo4j"
gem "database_cleaner-ohm"
gem "database_cleaner-redis"
gem "database_cleaner-sequel"
end
gem "byebug"
325 changes: 0 additions & 325 deletions Gemfile.lock

This file was deleted.

1 change: 0 additions & 1 deletion Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ guard :rspec, cmd: "bundle exec rspec" do
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch("spec/spec_helper.rb") { "spec" }
end

Loading