rubydb-activerecord 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -3
- data/lib/active_record/connection_adapters/rubydb_adapter.rb +881 -879
- data/rubydb-activerecord.gemspec +21 -21
- metadata +1 -1
data/rubydb-activerecord.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
Gem::Specification.new do |spec|
|
|
4
|
-
spec.name = "rubydb-activerecord"
|
|
5
|
-
spec.version = "0.1.
|
|
6
|
-
spec.authors = ["Aldane Hutchinson"]
|
|
7
|
-
spec.email = ["aldanehutchinson5@gmail.com"]
|
|
8
|
-
|
|
9
|
-
spec.summary = "ActiveRecord adapter for RubyDB"
|
|
10
|
-
spec.description = "ActiveRecord adapter for the RubyDB database"
|
|
11
|
-
spec.homepage = "https://github.com/aldanedev-create/rubydb"
|
|
12
|
-
spec.license = "MIT"
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |spec|
|
|
4
|
+
spec.name = "rubydb-activerecord"
|
|
5
|
+
spec.version = "0.1.3"
|
|
6
|
+
spec.authors = ["Aldane Hutchinson"]
|
|
7
|
+
spec.email = ["aldanehutchinson5@gmail.com"]
|
|
8
|
+
|
|
9
|
+
spec.summary = "ActiveRecord adapter for RubyDB"
|
|
10
|
+
spec.description = "ActiveRecord adapter for the RubyDB database"
|
|
11
|
+
spec.homepage = "https://github.com/aldanedev-create/rubydb"
|
|
12
|
+
spec.license = "MIT"
|
|
13
13
|
# rubydb itself requires Ruby 3.3 or newer. Keep the adapter's runtime
|
|
14
14
|
# contract aligned so Bundler cannot select an unsupported combination.
|
|
15
15
|
spec.required_ruby_version = ">= 3.3.0"
|
|
@@ -21,12 +21,12 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.metadata["documentation_uri"] = "https://github.com/aldanedev-create/rubydb/tree/main/docs"
|
|
22
22
|
|
|
23
23
|
spec.files = Dir.glob("lib/**/*.rb") + %w[README.md rubydb-activerecord.gemspec]
|
|
24
|
-
spec.require_paths = ["lib"]
|
|
25
|
-
|
|
26
|
-
spec.add_dependency "activerecord", ">= 7.1", "< 8.1"
|
|
27
|
-
spec.add_dependency "rubydb", "~> 0.1.0"
|
|
28
|
-
|
|
29
|
-
spec.add_development_dependency "rake", "~> 13.2"
|
|
30
|
-
spec.add_development_dependency "rspec", "~> 3.13"
|
|
31
|
-
spec.add_development_dependency "rubocop", "~> 1.60"
|
|
32
|
-
end
|
|
24
|
+
spec.require_paths = ["lib"]
|
|
25
|
+
|
|
26
|
+
spec.add_dependency "activerecord", ">= 7.1", "< 8.1"
|
|
27
|
+
spec.add_dependency "rubydb", "~> 0.1.0"
|
|
28
|
+
|
|
29
|
+
spec.add_development_dependency "rake", "~> 13.2"
|
|
30
|
+
spec.add_development_dependency "rspec", "~> 3.13"
|
|
31
|
+
spec.add_development_dependency "rubocop", "~> 1.60"
|
|
32
|
+
end
|