batch 1.0.1 → 1.0.2
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.
- data/.gems +1 -0
- data/.gitignore +2 -0
- data/batch.gemspec +4 -2
- data/batch.gemspec.erb +17 -0
- data/lib/batch.rb +2 -1
- metadata +8 -5
data/.gems
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
contest -v 0.1.3
|
data/.gitignore
ADDED
data/batch.gemspec
CHANGED
@@ -1,9 +1,11 @@
|
|
1
|
+
require "./lib/batch"
|
2
|
+
|
1
3
|
Gem::Specification.new do |s|
|
2
4
|
s.name = "batch"
|
3
|
-
s.version =
|
5
|
+
s.version = Batch::VERSION
|
4
6
|
s.summary = "Iterate Enumerables with progress reporting."
|
5
7
|
s.authors = ["Damian Janowski", "Michel Martens"]
|
6
8
|
s.email = ["djanowski@dimaion.com", "michel@soveran.com"]
|
7
9
|
s.homepage = "http://github.com/djanowski/batch"
|
8
|
-
s.files =
|
10
|
+
s.files = `git ls-files`.split("\n")
|
9
11
|
end
|
data/batch.gemspec.erb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
<% require "./lib/batch" -%>
|
2
|
+
Gem::Specification.new do |s|
|
3
|
+
s.name = "batch"
|
4
|
+
s.version = "<%= Batch::VERSION %>"
|
5
|
+
s.summary = "Iterate Enumerables with progress reporting."
|
6
|
+
s.authors = ["Damian Janowski", "Michel Martens"]
|
7
|
+
s.email = ["djanowski@dimaion.com", "michel@soveran.com"]
|
8
|
+
s.homepage = "http://github.com/djanowski/batch"
|
9
|
+
s.files = <%= Dir[
|
10
|
+
"LICENSE",
|
11
|
+
"README.markdown",
|
12
|
+
"Rakefile",
|
13
|
+
"lib/**/*.rb",
|
14
|
+
"*.gemspec",
|
15
|
+
"test/*.*"
|
16
|
+
].inspect %>
|
17
|
+
end
|
data/lib/batch.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: batch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2013-01-21 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description:
|
16
16
|
email:
|
@@ -20,11 +20,14 @@ executables: []
|
|
20
20
|
extensions: []
|
21
21
|
extra_rdoc_files: []
|
22
22
|
files:
|
23
|
-
-
|
23
|
+
- .gems
|
24
|
+
- .gitignore
|
24
25
|
- README.markdown
|
25
26
|
- Rakefile
|
26
|
-
-
|
27
|
+
- UNLICENSE
|
27
28
|
- batch.gemspec
|
29
|
+
- batch.gemspec.erb
|
30
|
+
- lib/batch.rb
|
28
31
|
- test/batch_test.rb
|
29
32
|
- test/test_helper.rb
|
30
33
|
homepage: http://github.com/djanowski/batch
|
@@ -47,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
47
50
|
version: '0'
|
48
51
|
requirements: []
|
49
52
|
rubyforge_project:
|
50
|
-
rubygems_version: 1.8.
|
53
|
+
rubygems_version: 1.8.23
|
51
54
|
signing_key:
|
52
55
|
specification_version: 3
|
53
56
|
summary: Iterate Enumerables with progress reporting.
|