sequel-batches 0.2.0 → 0.2.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/lib/sequel/extensions/batches/version.rb +1 -1
- data/sequel-batches.gemspec +3 -3
- metadata +4 -5
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0574ea7f800e68b8316c8f03cf5375dd165640ced4cf1a41016f02848fa61954
|
|
4
|
+
data.tar.gz: 980b78345324a39f7dc8b45bf79ee0096fe638285d761e768729ac398b11ed18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bdca5b44da27259b09e24662024f0b10b6d095a85762b98ef4cded1685f0af02daf7cfe62f230d5eafd81fc51d45aec5f13fba9dfbf4d144e56113371d450542
|
|
7
|
+
data.tar.gz: d0443e858f6202492cb7a1a67585bdcfffab0f47f630bd9f817937bb10e21dbf9dcfda27417f345b69c92d86855a96f2947d99b50f1c2b775d198ceab0589a7e
|
data/sequel-batches.gemspec
CHANGED
|
@@ -6,12 +6,12 @@ require "sequel/extensions/batches/version"
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "sequel-batches"
|
|
8
8
|
spec.version = Sequel::Extensions::Batches::VERSION
|
|
9
|
-
spec.authors = ["fiscal-cliff"]
|
|
10
|
-
spec.email = ["
|
|
9
|
+
spec.authors = ["fiscal-cliff", "umbrellio"]
|
|
10
|
+
spec.email = ["oss@umbrellio.biz"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{The extension mimics AR5 batches api}
|
|
13
13
|
spec.description = %q{Allows you to split your dataset in batches}
|
|
14
|
-
spec.homepage = "https://github.com/
|
|
14
|
+
spec.homepage = "https://github.com/umbrellio/sequel-batches"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
metadata
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sequel-batches
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- fiscal-cliff
|
|
8
|
+
- umbrellio
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: exe
|
|
10
11
|
cert_chain: []
|
|
@@ -96,7 +97,7 @@ dependencies:
|
|
|
96
97
|
version: '0'
|
|
97
98
|
description: Allows you to split your dataset in batches
|
|
98
99
|
email:
|
|
99
|
-
-
|
|
100
|
+
- oss@umbrellio.biz
|
|
100
101
|
executables: []
|
|
101
102
|
extensions: []
|
|
102
103
|
extra_rdoc_files: []
|
|
@@ -109,15 +110,13 @@ files:
|
|
|
109
110
|
- LICENSE.txt
|
|
110
111
|
- README.md
|
|
111
112
|
- Rakefile
|
|
112
|
-
- bin/console
|
|
113
|
-
- bin/setup
|
|
114
113
|
- gemfiles/ci.gemfile
|
|
115
114
|
- lib/sequel.rb
|
|
116
115
|
- lib/sequel/extensions/batches.rb
|
|
117
116
|
- lib/sequel/extensions/batches/version.rb
|
|
118
117
|
- log/.keep
|
|
119
118
|
- sequel-batches.gemspec
|
|
120
|
-
homepage: https://github.com/
|
|
119
|
+
homepage: https://github.com/umbrellio/sequel-batches
|
|
121
120
|
licenses:
|
|
122
121
|
- MIT
|
|
123
122
|
metadata:
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "sequel/batches"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start(__FILE__)
|