pod4 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1e0f3ba3e1a6e876874296334e8df4a789c6757403a6f72697e7f2a5506ac05f
4
- data.tar.gz: db35eb4f442ebe83b30de9ce394354143586142144af531171f35afffa8e504c
3
+ metadata.gz: 222b047955f5c90f80f9766f7d14b51322761dd9dce60d289c104b0f8becce35
4
+ data.tar.gz: 34d692c2d9d1831e4d3b6f5525ab2bda44bb7351dd6f8041b1ebe66d41db6463
5
5
  SHA512:
6
- metadata.gz: 4d033f6947e0e2fcf421f764746f647c68e1158b65568a215c57db2508773aecc700815bc4ad318bb844f5252e89c64fe16eca6a1b20c60fb15730835d411b90
7
- data.tar.gz: 68908e5107c5f1160b42b4948514554c57e53dcc337e413fd5b6282e6edc22ecf4dd51680a4a11f59103c6fb2ee1f8cb1d138f01b0f9007c5be41f4e2b984b1f
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", "~> 12"
11
- gem "rspec", "~> 3.8"
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.20"
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
- gem 'jdbc-postgres', '9.4.1200'
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
- # Please quote values for yourself, we don't.
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
@@ -1,3 +1,3 @@
1
1
  module Pod4
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
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.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: 2019-05-31 00:00:00.000000000 Z
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
- rubyforge_project:
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