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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c22ae251b55c86ad2a6e7a62edfa43b7be2cc629da1457532ddf9d7575450130
4
- data.tar.gz: 32e9759bf95501a53b12f7813a085821867b3405c5cadf9f716a3306950e7a27
3
+ metadata.gz: 0574ea7f800e68b8316c8f03cf5375dd165640ced4cf1a41016f02848fa61954
4
+ data.tar.gz: 980b78345324a39f7dc8b45bf79ee0096fe638285d761e768729ac398b11ed18
5
5
  SHA512:
6
- metadata.gz: c7d249497e4f035ac74de379de666244269adf9139b79169d0f096b78873a04601a04fca173afa73e2171ea0aeeb7f7609c2e82d3f52f67f04094a7991525b36
7
- data.tar.gz: e32900947434fa3af0a04db69cfaafa34ef7832f1820d6cb7f0273ccd73655983e046bd56b5570c73b5948baa2a118520c85d79ace60fa691d5015af01a8d7dd
6
+ metadata.gz: bdca5b44da27259b09e24662024f0b10b6d095a85762b98ef4cded1685f0af02daf7cfe62f230d5eafd81fc51d45aec5f13fba9dfbf4d144e56113371d450542
7
+ data.tar.gz: d0443e858f6202492cb7a1a67585bdcfffab0f47f630bd9f817937bb10e21dbf9dcfda27417f345b69c92d86855a96f2947d99b50f1c2b775d198ceab0589a7e
@@ -1,7 +1,7 @@
1
1
  module Sequel
2
2
  module Extensions
3
3
  module Batches
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
6
6
  end
7
7
  end
@@ -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 = ["why@not.com"]
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/fiscal-cliff"
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.0
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
- - why@not.com
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/fiscal-cliff
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__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here