pod4 1.0.2 → 1.0.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/lib/pod4/version.rb +1 -1
- data/pod4.gemspec +7 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f7db5348478c3d4dba39f248760d0f148f14f21866246e95ec3ea8c69505979
|
4
|
+
data.tar.gz: 7cbace08f7fb4151bfb7b9713bed4d5262d4d4bc7b4a0a87e79723e6c990fabf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b0d0707ae21d1060cbc5df5fa0bee569c85a5dc6f9af3db288c4ba4025c047a1cbb3f3390535df81589b1143053bc29337a407b3f345a4bbcfa594ae7051e83
|
7
|
+
data.tar.gz: 983c421cdfca75e40b211d19f9a80ed63bbd14068a539b3861be446803231b361d323e34f91de1675ad1bbc528cd62e9f6dd9601d0b7e252d3985287e8ccbcc8
|
data/lib/pod4/version.rb
CHANGED
data/pod4.gemspec
CHANGED
@@ -3,13 +3,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
require 'pod4/version'
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name
|
7
|
-
spec.version
|
8
|
-
spec.required_ruby_version = "2.7.4"
|
9
|
-
spec.authors
|
10
|
-
spec.email
|
11
|
-
spec.summary
|
12
|
-
spec.description
|
6
|
+
spec.name = "pod4"
|
7
|
+
spec.version = Pod4::VERSION
|
8
|
+
spec.required_ruby_version = ">= 2.7.4"
|
9
|
+
spec.authors = ["Andy Jones"]
|
10
|
+
spec.email = ["andy.jones@twosticksconsulting.co.uk"]
|
11
|
+
spec.summary = %q|Totally not an ORM|
|
12
|
+
spec.description = <<-DESC.gsub(/^\s+/, "")
|
13
13
|
Provides a simple, common framework to talk to a bunch of data sources,
|
14
14
|
using model classes which consist of a bare minimum of DSL plus vanilla Ruby
|
15
15
|
inheritance.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Jones
|
@@ -121,7 +121,7 @@ require_paths:
|
|
121
121
|
- lib
|
122
122
|
required_ruby_version: !ruby/object:Gem::Requirement
|
123
123
|
requirements:
|
124
|
-
- -
|
124
|
+
- - ">="
|
125
125
|
- !ruby/object:Gem::Version
|
126
126
|
version: 2.7.4
|
127
127
|
required_rubygems_version: !ruby/object:Gem::Requirement
|