pod4 1.0.0 → 1.0.1
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/.bugs/bugs +1 -0
- data/Gemfile +11 -5
- data/lib/pod4/sequel_interface.rb +2 -1
- data/lib/pod4/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 222b047955f5c90f80f9766f7d14b51322761dd9dce60d289c104b0f8becce35
|
|
4
|
+
data.tar.gz: 34d692c2d9d1831e4d3b6f5525ab2bda44bb7351dd6f8041b1ebe66d41db6463
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92f70348d8ac572a9ca5a3a4dfb3fe7b1abf6f1fa0e6846a7bab3aa94f18cc35413706e663db56517fcf5b525a7e481ca464b66c990f892f0531c0b5aa39375f
|
|
7
|
+
data.tar.gz: 6850576058884778e31e38c63bb02eec915baa63423168d523b7d0593d5fb9dfd97151ad32584c1fc3f6bcacd34119871033bf3f45b89cc555266cf75688de4c
|
data/.bugs/bugs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
Fixnum is Deprecated | owner:Andy Jones <andy.jones@jameshall.co.uk>, open:True, id:274eb8828bd4e7d879e4f7a99317c75eb2a2e2b0, time:1533817328.12
|
|
2
2
|
BigDecimal.new is deprecated | owner:Andy Jones <andy.jones@jameshall.co.uk>, open:False, id:3979ce1679bc4f8c4aef8436e344e10e3773480d, time:1533817342.0
|
|
3
|
+
Remove id field from record in update if its autoincrement | owner:Andy Jones <andy.jones@jameshall.co.uk>, open:True, id:a383d9f88db5b73e9391a824310133ed2e348eda, time:1570013165.41
|
|
3
4
|
Connection Pool Parallelism tests crash rspec when run as part of the suite | owner:Andy Jones <andy.jones@jameshall.co.uk>, open:False, id:b5368c7ef19065fc597b5692314da71772660963, time:1554280671.5
|
data/Gemfile
CHANGED
|
@@ -6,14 +6,14 @@ gemspec
|
|
|
6
6
|
group :development, :test do
|
|
7
7
|
|
|
8
8
|
# for bundler, management, etc etc
|
|
9
|
-
gem "bundler", "~> 2"
|
|
10
|
-
gem "rake", "~>
|
|
11
|
-
gem "rspec", "~> 3.
|
|
9
|
+
gem "bundler", "~> 2.2"
|
|
10
|
+
gem "rake", "~> 13.0"
|
|
11
|
+
gem "rspec", "~> 3.10"
|
|
12
12
|
gem 'pry'
|
|
13
13
|
gem "pry-doc"
|
|
14
14
|
|
|
15
15
|
# For testing
|
|
16
|
-
gem "sequel", "~> 5.
|
|
16
|
+
gem "sequel", "~> 5.4"
|
|
17
17
|
gem "nebulous_stomp", "~> 3"
|
|
18
18
|
|
|
19
19
|
platforms :ruby do
|
|
@@ -26,7 +26,13 @@ group :development, :test do
|
|
|
26
26
|
gem "jruby-lint"
|
|
27
27
|
gem "jeremyevans-postgres-pr"
|
|
28
28
|
gem 'jdbc-mssqlserver'
|
|
29
|
-
|
|
29
|
+
|
|
30
|
+
# Note that this gem is part of a larger project, for Activerecord, and their version history
|
|
31
|
+
# makes no sense at all. See the RubyGems site to make sense of that. Note: there are
|
|
32
|
+
# alternative gems. But this is by the jRuby team; so that's a powerful reason to tolerate BS.
|
|
33
|
+
# If you want to go back to the previous version we used you'll have to pin it here; Bundler
|
|
34
|
+
# can't figure out their version history, either.
|
|
35
|
+
gem 'jdbc-postgres', '42.2.14'
|
|
30
36
|
end
|
|
31
37
|
|
|
32
38
|
|
|
@@ -234,7 +234,8 @@ module Pod4
|
|
|
234
234
|
#
|
|
235
235
|
# Use ? as a placeholder in the SQL
|
|
236
236
|
# mode is either :insert :update or :delete
|
|
237
|
-
#
|
|
237
|
+
# Sequel appears to quote these if you don't but bear in mind that, apparently, symbols get
|
|
238
|
+
# "quoted" as if they were columns while strings get 'quoted' as if they are, well, strings.
|
|
238
239
|
#
|
|
239
240
|
# "update and delete should return the number of rows affected, and insert should return the
|
|
240
241
|
# autogenerated primary integer key for the row inserted (if any)"
|
data/lib/pod4/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pod4
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Jones
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: devnull
|
|
@@ -132,8 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
132
132
|
- !ruby/object:Gem::Version
|
|
133
133
|
version: '0'
|
|
134
134
|
requirements: []
|
|
135
|
-
|
|
136
|
-
rubygems_version: 2.7.6
|
|
135
|
+
rubygems_version: 3.1.6
|
|
137
136
|
signing_key:
|
|
138
137
|
specification_version: 4
|
|
139
138
|
summary: Totally not an ORM
|