rbatch 1.8.1 → 1.8.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/Gemfile +4 -0
- data/lib/rbatch/version.rb +3 -0
- data/rbatch.gemspec +19 -0
- metadata +4 -1
data/Gemfile
ADDED
data/rbatch.gemspec
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'rbatch/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |gem|
|
|
7
|
+
gem.name = "rbatch"
|
|
8
|
+
gem.version = Rbatch::VERSION
|
|
9
|
+
gem.authors = ["fetaro"]
|
|
10
|
+
gem.email = ["fetaro@gmail.com"]
|
|
11
|
+
gem.description = ""
|
|
12
|
+
gem.summary = "Ruby-based simple batch framework"
|
|
13
|
+
gem.homepage = "https://github.com/fetaro/rbatch"
|
|
14
|
+
|
|
15
|
+
gem.files = `git ls-files`.split($/)
|
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
|
+
gem.require_paths = ["lib"]
|
|
19
|
+
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: rbatch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.8.
|
|
5
|
+
version: 1.8.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- fetaro
|
|
@@ -25,6 +25,7 @@ extra_rdoc_files: []
|
|
|
25
25
|
files:
|
|
26
26
|
- .gitignore
|
|
27
27
|
- CHANGELOG
|
|
28
|
+
- Gemfile
|
|
28
29
|
- HOW_TO_TEST.md
|
|
29
30
|
- LICENSE
|
|
30
31
|
- README.ja.md
|
|
@@ -75,6 +76,8 @@ files:
|
|
|
75
76
|
- lib/rbatch/cmd.rb
|
|
76
77
|
- lib/rbatch/config.rb
|
|
77
78
|
- lib/rbatch/log.rb
|
|
79
|
+
- lib/rbatch/version.rb
|
|
80
|
+
- rbatch.gemspec
|
|
78
81
|
- sample/bin/apache_log_insert.rb
|
|
79
82
|
- sample/bin/file_batch_copy.rb
|
|
80
83
|
- sample/bin/mysql_data_backup.rb
|