umbrellio-sequel-plugins 0.1.0 → 0.1.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/README.md +1 -0
- data/bin/console +1 -0
- data/lib/umbrellio-sequel-plugins.rb +3 -0
- data/lib/{sequel_plugins.rb → umbrellio_sequel_plugins.rb} +0 -0
- data/umbrellio-sequel-plugins.gemspec +1 -1
- metadata +3 -3
- data/lib/sequel-plugins.rb +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6740d122d9fb921f3d31eb7e47b12c18cf71f20821e918753b04a892d691b12c
|
|
4
|
+
data.tar.gz: d931c84196d0a1f25acfa018d985cb1483827603f90a93b4349a6956ea93c3c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a6d3da08a946fff13793c5fc5798799673b20e87f0c2c7632b49bde044c43869118d8d3df8e7080a710b2894fed7bbd87fa819ee46dab4c361a79972a553410
|
|
7
|
+
data.tar.gz: 7b392de3feb2c85c24eaa58a54eee9d02026a4c5f8fb294c9bd3638792ca5898a1fb1a2102e260a1a0f7222104ac8f53ec2bc8339b317e9b5873f4a2cda86fd4
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# SequelPlugins
|
|
2
2
|
[](https://travis-ci.org/umbrellio/umbrellio-sequel-plugins)
|
|
3
3
|
[](https://coveralls.io/github/umbrellio/umbrellio-sequel-plugins?branch=master)
|
|
4
|
+
[](https://badge.fury.io/rb/umbrellio-sequel-plugins)
|
|
4
5
|
|
|
5
6
|
## Installation
|
|
6
7
|
|
data/bin/console
CHANGED
|
File without changes
|
|
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "umbrellio-sequel-plugins"
|
|
8
|
-
spec.version = "0.1.
|
|
8
|
+
spec.version = "0.1.1"
|
|
9
9
|
spec.authors = ["nulldef"]
|
|
10
10
|
spec.email = ["nulldefiner@gmail.com"]
|
|
11
11
|
spec.required_ruby_version = ">= 2.4"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: umbrellio-sequel-plugins
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nulldef
|
|
@@ -140,7 +140,6 @@ files:
|
|
|
140
140
|
- bin/console
|
|
141
141
|
- bin/setup
|
|
142
142
|
- database.rb
|
|
143
|
-
- lib/sequel-plugins.rb
|
|
144
143
|
- lib/sequel/extensions/currency_rates.rb
|
|
145
144
|
- lib/sequel/extensions/pg_tools.rb
|
|
146
145
|
- lib/sequel/extensions/slave.rb
|
|
@@ -152,9 +151,10 @@ files:
|
|
|
152
151
|
- lib/sequel/plugins/upsert.rb
|
|
153
152
|
- lib/sequel/plugins/with_lock.rb
|
|
154
153
|
- lib/sequel/timestamp_migrator_undo_extension.rb
|
|
155
|
-
- lib/sequel_plugins.rb
|
|
156
154
|
- lib/tasks/sequel/rollback_missing_migrations.rake
|
|
157
155
|
- lib/tasks/sequel/undo.rake
|
|
156
|
+
- lib/umbrellio-sequel-plugins.rb
|
|
157
|
+
- lib/umbrellio_sequel_plugins.rb
|
|
158
158
|
- umbrellio-sequel-plugins.gemspec
|
|
159
159
|
homepage:
|
|
160
160
|
licenses: []
|
data/lib/sequel-plugins.rb
DELETED