pigspec 0.0.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 +7 -0
- data/.gitignore +14 -0
- data/.rspec +2 -0
- data/.rubocop.yml +8 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +87 -0
- data/Rakefile +9 -0
- data/lib/pigspec/javabridge.rb +145 -0
- data/lib/pigspec/version.rb +4 -0
- data/lib/pigspec.rb +98 -0
- data/pigspec.gemspec +28 -0
- data/spec/pig/counting_macro.pig +4 -0
- data/spec/pig/test.pig +3 -0
- data/spec/pig/test2.pig +5 -0
- data/spec/pig/test_macro.pig +3 -0
- data/spec/pigspec_spec.rb +114 -0
- data/spec/spec_helper.rb +5 -0
- metadata +153 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8e976beef7562e44da2622c367d5aed0c9b8fd0b
|
4
|
+
data.tar.gz: fdd80f3420090ac64a1b9389c67992db7b745f26
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5b3bb24cb0bd3379653a4c90a8969777043d0a007cef7eee33e4ebe5bc6497432abe5c1ad981b6b7476dc57bb3ea3f28bb2be36a7b2126b79fab8dde83e2004d
|
7
|
+
data.tar.gz: d65677aa13302ea25c6d54acedbf43117188f939baf8062b3918dedbf652699b6d13a55428db30957191e4efdc7d331fe15c34d9022691e04823279a6f84f5fd
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 shiracha
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
# PigSpec
|
2
|
+
|
3
|
+
PigSpec is a extention for rspec testing framework for Apache Pig.
|
4
|
+
This extention can execute pig script with customize input relation data, and can get output relation data in ruby easily.
|
5
|
+
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
PigSpec uses Pig and PigUnit.
|
9
|
+
Thus, install Pig and PigUnit first.
|
10
|
+
|
11
|
+
Second. install gem of pigspec.
|
12
|
+
|
13
|
+
If you using bundle, You write Gemfile to
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem 'pigspec'
|
17
|
+
```
|
18
|
+
And then execute:
|
19
|
+
|
20
|
+
```bash
|
21
|
+
$ bundle
|
22
|
+
```
|
23
|
+
|
24
|
+
Or install it yourself as:
|
25
|
+
|
26
|
+
```bash
|
27
|
+
$ gem install pigspec
|
28
|
+
```
|
29
|
+
|
30
|
+
|
31
|
+
## Usage
|
32
|
+
|
33
|
+
First: write a test case in your rspec code.
|
34
|
+
Sample:
|
35
|
+
```ruby
|
36
|
+
require 'pigspec'
|
37
|
+
include PigSpec
|
38
|
+
|
39
|
+
describe 'SamplePigTest' do
|
40
|
+
it 'sample test' do
|
41
|
+
actual = pig do
|
42
|
+
script <<-EOS
|
43
|
+
in = LOAD 'inputfile' AS (query:chararray);
|
44
|
+
out = LIMIT in 1;
|
45
|
+
STORE out INTO 'outputfile';
|
46
|
+
EOS
|
47
|
+
with_args 'n=2'
|
48
|
+
override 'in', %w(hoge hoge hoge)
|
49
|
+
pickup 'out'
|
50
|
+
end
|
51
|
+
expect(actual).to eq([['hoge']])
|
52
|
+
end
|
53
|
+
end
|
54
|
+
```
|
55
|
+
|
56
|
+
pig returns `pickup`ed alias datas.
|
57
|
+
|
58
|
+
Readed datatype are following:
|
59
|
+
|
60
|
+
| Pig DataType | Ruby Class |
|
61
|
+
|-----------------------|--------------|
|
62
|
+
| bag | Array |
|
63
|
+
| tuple | Array |
|
64
|
+
| map | String |
|
65
|
+
| chararray | String |
|
66
|
+
| bytearray | String |
|
67
|
+
| datetime | String |
|
68
|
+
| long | Integer |
|
69
|
+
| integer | Integer |
|
70
|
+
| double | Float |
|
71
|
+
| float | Float |
|
72
|
+
| boolean | True/False |
|
73
|
+
|
74
|
+
|
75
|
+
Second: Set environment variable `PIG_HOME` to Your pig installed directory, And Run.
|
76
|
+
```bash
|
77
|
+
export PIG_HOME=<your pig installed dir>
|
78
|
+
spec
|
79
|
+
```
|
80
|
+
|
81
|
+
## Contributing
|
82
|
+
|
83
|
+
1. Fork it ( https://github.com/shiracha/pigspec/fork )
|
84
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
85
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
86
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
87
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,145 @@
|
|
1
|
+
require 'rjb'
|
2
|
+
require 'tempfile'
|
3
|
+
|
4
|
+
# A testing framework for pig
|
5
|
+
module PigSpec
|
6
|
+
# bridge for java pig classies
|
7
|
+
class JavaBridge
|
8
|
+
def initialize(pig_home = ENV['PIG_HOME'])
|
9
|
+
fail ArgumentError, 'pig_home must not be nil.' unless pig_home
|
10
|
+
|
11
|
+
Rjb.add_classpath(File.join(pig_home, 'pig.jar'))
|
12
|
+
Rjb.add_classpath(File.join(pig_home, 'pigunit.jar'))
|
13
|
+
|
14
|
+
Rjb.load '.', ['-Dfile.encoding=UTF-8']
|
15
|
+
|
16
|
+
Rjb.add_jar(File.join(pig_home, 'pig.jar'))
|
17
|
+
Rjb.add_jar(File.join(pig_home, 'pigunit.jar'))
|
18
|
+
|
19
|
+
import_classies
|
20
|
+
end
|
21
|
+
|
22
|
+
def unload
|
23
|
+
@pig_test_class = nil
|
24
|
+
@cluster_class = nil
|
25
|
+
@file_localizer_class = nil
|
26
|
+
@pig_server_class = nil
|
27
|
+
@schema_class = nil
|
28
|
+
@string_builder_class = nil
|
29
|
+
@data_type_enum = nil
|
30
|
+
@string_util_class = nil
|
31
|
+
Rjb.unload
|
32
|
+
GC.start
|
33
|
+
end
|
34
|
+
|
35
|
+
def create_test(script, *args)
|
36
|
+
instance = @pig_test_class.new script, args
|
37
|
+
JavaPigTest.new self, instance
|
38
|
+
end
|
39
|
+
|
40
|
+
def context
|
41
|
+
@pig_test_class.getPigServer.getPigContext
|
42
|
+
end
|
43
|
+
|
44
|
+
def create_hdfs_temp
|
45
|
+
@file_localizer_class.getTemporaryPath(context).toString
|
46
|
+
end
|
47
|
+
|
48
|
+
def server
|
49
|
+
@pig_test_class.getPigServer
|
50
|
+
end
|
51
|
+
|
52
|
+
def cluster
|
53
|
+
@pig_test_class.getCluster
|
54
|
+
end
|
55
|
+
|
56
|
+
def upload_text(text, path)
|
57
|
+
cluster.copyFromLocalFile(text, path, true)
|
58
|
+
end
|
59
|
+
|
60
|
+
def schema(alias_name)
|
61
|
+
raw_schema = server.dumpSchema(alias_name)
|
62
|
+
builder = @string_builder_class.new
|
63
|
+
@schema_class.stringifySchema(builder, raw_schema, @data_type_enum.TUPLE)
|
64
|
+
builder.toString
|
65
|
+
end
|
66
|
+
|
67
|
+
def stringify(alias_values)
|
68
|
+
@string_util_class.join(alias_values, "\n")
|
69
|
+
end
|
70
|
+
|
71
|
+
attr_reader :data_type_enum
|
72
|
+
|
73
|
+
private
|
74
|
+
|
75
|
+
def import_classies
|
76
|
+
require 'rjb/list'
|
77
|
+
@pig_test_class = Rjb.import('org.apache.pig.pigunit.PigTest')
|
78
|
+
@cluster_class = Rjb.import('org.apache.pig.pigunit.Cluster')
|
79
|
+
@file_localizer_class = Rjb.import('org.apache.pig.impl.io.FileLocalizer')
|
80
|
+
@pig_server_class = Rjb.import('org.apache.pig.pigunit.pig.PigServer')
|
81
|
+
@schema_class = Rjb.import('org.apache.pig.impl.logicalLayer.schema.Schema')
|
82
|
+
@string_builder_class = Rjb.import('java.lang.StringBuilder')
|
83
|
+
@data_type_enum = Rjb.import('org.apache.pig.data.DataType')
|
84
|
+
@string_util_class = Rjb.import('org.apache.commons.lang.StringUtils')
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
# Wrapper for java Pigtest class.
|
89
|
+
class JavaPigTest
|
90
|
+
def initialize(bridge, instance)
|
91
|
+
@bridge = bridge
|
92
|
+
@instance = instance
|
93
|
+
end
|
94
|
+
|
95
|
+
def register_script
|
96
|
+
# runScript method only register pigscript.
|
97
|
+
# pig uses 'lazy run' to decide really output alias.
|
98
|
+
@instance.runScript
|
99
|
+
end
|
100
|
+
|
101
|
+
def run_script(goal_alias)
|
102
|
+
items = []
|
103
|
+
@instance.getAlias(goal_alias).each do |item|
|
104
|
+
items.push read_tuple(item)
|
105
|
+
end
|
106
|
+
items
|
107
|
+
end
|
108
|
+
|
109
|
+
def override(name, query)
|
110
|
+
@instance.override name, query
|
111
|
+
end
|
112
|
+
|
113
|
+
private
|
114
|
+
|
115
|
+
def read_as(type, value) # rubocop:disable Metrics/AbcSize, Style/CyclomaticComplexity, Style/MethodLength
|
116
|
+
return value unless type
|
117
|
+
# AllTypes: http://pig.apache.org/docs/r0.11.1/api/org/apache/pig/data/DataType.html
|
118
|
+
types = @bridge.data_type_enum
|
119
|
+
case type
|
120
|
+
when types.CHARARRAY, types.BYTEARRAY, types.DATETIME then value.toString
|
121
|
+
# daringly no cast to test convinience
|
122
|
+
when types.DATETIME then value.toString
|
123
|
+
when types.LONG, types.INTEGER, types.BYTE then value.toString.to_i
|
124
|
+
when types.DOUBLE, types.FLOAT then value.toString.to_f
|
125
|
+
when types.BOOLEAN then value.toString.downcase.include? 't'
|
126
|
+
when types.TUPLE then read_tuple value
|
127
|
+
# TODO: types.MAP is schemaless...How to cast it...?
|
128
|
+
when types.MAP then value.toString # read_map value
|
129
|
+
when types.UNKNOWN then nil
|
130
|
+
else nil
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
def read_tuple(tuple)
|
135
|
+
casted = []
|
136
|
+
tuple.size.times do|index|
|
137
|
+
type = tuple.getType index
|
138
|
+
value = nil
|
139
|
+
value = tuple.get(index) unless tuple.isNull index
|
140
|
+
casted.push read_as(type, value)
|
141
|
+
end
|
142
|
+
casted
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end # module PigSpec
|
data/lib/pigspec.rb
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
require 'pigspec/version'
|
2
|
+
require 'pigspec/javabridge'
|
3
|
+
|
4
|
+
require 'cleanroom'
|
5
|
+
require 'tempfile'
|
6
|
+
|
7
|
+
# A testing framework for pig
|
8
|
+
module PigSpec
|
9
|
+
# TestCase of PigSpec
|
10
|
+
class Test
|
11
|
+
include Cleanroom
|
12
|
+
|
13
|
+
class << self
|
14
|
+
attr_reader :bridge
|
15
|
+
def construct
|
16
|
+
@bridge ||= JavaBridge.new
|
17
|
+
rescue ArgumentError
|
18
|
+
raise 'Environment variable PIG_HOME does not found or does not correct. It must point to your installation of Apache Pig.'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def setup
|
23
|
+
Test.construct
|
24
|
+
@script = []
|
25
|
+
@args = []
|
26
|
+
@override = []
|
27
|
+
@pickup = nil
|
28
|
+
end
|
29
|
+
|
30
|
+
def shutdown
|
31
|
+
# Rjb unload -> load is not work.(current restriction.)
|
32
|
+
# s.a https://github.com/arton/rjb/issues/34
|
33
|
+
# If the JNI bug fixed then we can uncomment follow line.
|
34
|
+
# @bridge.unload
|
35
|
+
end
|
36
|
+
|
37
|
+
def script(text)
|
38
|
+
@script = text.split("\n")
|
39
|
+
end
|
40
|
+
expose :script
|
41
|
+
|
42
|
+
def script_file(path)
|
43
|
+
@script = open(path, 'r') { |f| f.each_line.to_a }
|
44
|
+
end
|
45
|
+
expose :script_file
|
46
|
+
|
47
|
+
def with_args(*args)
|
48
|
+
@args = args
|
49
|
+
end
|
50
|
+
expose :with_args
|
51
|
+
|
52
|
+
def override(name, value)
|
53
|
+
@override.push name: name, value: value
|
54
|
+
end
|
55
|
+
expose :override
|
56
|
+
|
57
|
+
# to 'expose'
|
58
|
+
def pickup(name) # rubocop:disable Style/TrivialAccessors
|
59
|
+
@pickup = name
|
60
|
+
end
|
61
|
+
expose :pickup
|
62
|
+
|
63
|
+
def run
|
64
|
+
# If no output alias, must result nil
|
65
|
+
return nil unless @pickup
|
66
|
+
|
67
|
+
test = Test.bridge.create_test @script, *@args
|
68
|
+
test.register_script
|
69
|
+
apply_override test
|
70
|
+
test.run_script @pickup
|
71
|
+
end
|
72
|
+
|
73
|
+
private
|
74
|
+
|
75
|
+
def apply_override(test)
|
76
|
+
@override.each do |item|
|
77
|
+
temp = Test.bridge.create_hdfs_temp
|
78
|
+
Test.bridge.upload_text item[:value], temp
|
79
|
+
|
80
|
+
schema = Test.bridge.schema item[:name]
|
81
|
+
|
82
|
+
query = "#{item[:name]} = LOAD '#{temp}' USING PigStorage('\\t') AS #{schema};"
|
83
|
+
test.override item[:name], query
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end # class Test
|
87
|
+
|
88
|
+
module_function
|
89
|
+
|
90
|
+
def pig(&block)
|
91
|
+
test = Test.new
|
92
|
+
test.setup
|
93
|
+
test.evaluate(&block)
|
94
|
+
result = test.run
|
95
|
+
test.shutdown
|
96
|
+
result
|
97
|
+
end
|
98
|
+
end # module PigSpec
|
data/pigspec.gemspec
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'pigspec/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'pigspec'
|
8
|
+
spec.version = PigSpec::VERSION
|
9
|
+
spec.authors = ['shiracha']
|
10
|
+
spec.email = ['shiracha.rikyu@gmail.com']
|
11
|
+
spec.summary = 'A Testing Framework extension for Apache Pig.'
|
12
|
+
spec.description = 'A Testing Framework extension for Apache Pig.To setup, executing and get the result.'
|
13
|
+
spec.homepage = 'https://github.com/shiracha/pigspec'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(/^(test|spec|features)\//)
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.add_dependency 'rjb'
|
22
|
+
spec.add_dependency 'cleanroom'
|
23
|
+
|
24
|
+
spec.add_development_dependency 'bundler', '~> 1.7'
|
25
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
26
|
+
spec.add_development_dependency 'rspec'
|
27
|
+
spec.add_development_dependency 'rubocop'
|
28
|
+
end
|
data/spec/pig/test.pig
ADDED
data/spec/pig/test2.pig
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
# ---------------------- test data constants
|
4
|
+
input_alias = 'in'
|
5
|
+
input = %w(
|
6
|
+
hoge
|
7
|
+
hoge
|
8
|
+
hoge
|
9
|
+
hoge
|
10
|
+
haga
|
11
|
+
haga
|
12
|
+
hage
|
13
|
+
hage
|
14
|
+
hage
|
15
|
+
huge
|
16
|
+
)
|
17
|
+
output_alias = 'out'
|
18
|
+
output = [['hoge']]
|
19
|
+
|
20
|
+
# ---------------------- test
|
21
|
+
|
22
|
+
include PigSpec
|
23
|
+
|
24
|
+
describe PigSpec do
|
25
|
+
it 'has a version number' do
|
26
|
+
expect(PigSpec::VERSION).not_to be nil
|
27
|
+
end
|
28
|
+
|
29
|
+
it 'can run' do
|
30
|
+
actual = pig do
|
31
|
+
script <<-EOS
|
32
|
+
in = LOAD 'inputfile' AS (query:chararray);
|
33
|
+
out = LIMIT in 1;
|
34
|
+
STORE out INTO 'outputfile';
|
35
|
+
EOS
|
36
|
+
with_args 'n=2'
|
37
|
+
override input_alias, input
|
38
|
+
pickup output_alias
|
39
|
+
end
|
40
|
+
expect(actual).to eq(output)
|
41
|
+
end
|
42
|
+
|
43
|
+
it 'can run from file' do
|
44
|
+
actual = pig do
|
45
|
+
script_file 'spec/pig/test.pig'
|
46
|
+
with_args 'n=2'
|
47
|
+
override input_alias, input
|
48
|
+
pickup output_alias
|
49
|
+
end
|
50
|
+
expect(actual).to eq(output)
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'can import pig macro(script)' do
|
54
|
+
actual = pig do
|
55
|
+
script <<-EOS
|
56
|
+
IMPORT 'spec/pig/test_macro.pig';
|
57
|
+
in = LOAD 'inputfile' AS (query:chararray);
|
58
|
+
macro_in = LIMIT in 1;
|
59
|
+
out = test_macro(macro_in, 'query');
|
60
|
+
STORE out INTO 'outputfile';
|
61
|
+
EOS
|
62
|
+
with_args 'n=2'
|
63
|
+
override input_alias, input
|
64
|
+
pickup output_alias
|
65
|
+
end
|
66
|
+
expect(actual).to eq([['testconcat_hoge']])
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'can import pig macro(script_file)' do
|
70
|
+
actual = pig do
|
71
|
+
script_file 'spec/pig/test2.pig'
|
72
|
+
with_args 'n=2'
|
73
|
+
override input_alias, input
|
74
|
+
pickup output_alias
|
75
|
+
end
|
76
|
+
expect(actual).to eq([['testconcat_hoge']])
|
77
|
+
end
|
78
|
+
|
79
|
+
# TODO: avoiding duplicated macro error...
|
80
|
+
it 'can define macro on script', skip: true do
|
81
|
+
actual = pig do
|
82
|
+
script <<-EOS
|
83
|
+
DEFINE counting_macro(rel, column) RETURNS RET {
|
84
|
+
rel_00 = GROUP $rel BY ($column);
|
85
|
+
$RET = FOREACH rel_00 GENERATE group as word, COUNT($rel) AS count;
|
86
|
+
};
|
87
|
+
in_00 = LOAD 'inputfile' AS (query:chararray);
|
88
|
+
out_00 = counting_macro(in_00, 'query');
|
89
|
+
out = ORDER out_00 BY count DESC;
|
90
|
+
STORE out INTO 'outputfile';
|
91
|
+
EOS
|
92
|
+
with_args 'n=2'
|
93
|
+
override 'in_00', input
|
94
|
+
pickup output_alias
|
95
|
+
end
|
96
|
+
expect(actual).to eq([['hoge', 4], ['hage', 3], ['haga', 2], ['huge', 1]])
|
97
|
+
end
|
98
|
+
|
99
|
+
it 'can override macro relation' do
|
100
|
+
actual = pig do
|
101
|
+
script <<-EOS
|
102
|
+
IMPORT 'spec/pig/counting_macro.pig';
|
103
|
+
in_00 = LOAD 'inputfile' AS (query:chararray);
|
104
|
+
out_00 = counting_macro(in_00, 'query');
|
105
|
+
out = ORDER out_00 BY count DESC;
|
106
|
+
STORE out INTO 'outputfile';
|
107
|
+
EOS
|
108
|
+
with_args 'n=2'
|
109
|
+
override 'in_00', input
|
110
|
+
pickup output_alias
|
111
|
+
end
|
112
|
+
expect(actual).to eq([['hoge', 4], ['hage', 3], ['haga', 2], ['huge', 1]])
|
113
|
+
end
|
114
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,153 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pigspec
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- shiracha
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-11-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rjb
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: cleanroom
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.7'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.7'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: A Testing Framework extension for Apache Pig.To setup, executing and
|
98
|
+
get the result.
|
99
|
+
email:
|
100
|
+
- shiracha.rikyu@gmail.com
|
101
|
+
executables: []
|
102
|
+
extensions: []
|
103
|
+
extra_rdoc_files: []
|
104
|
+
files:
|
105
|
+
- ".gitignore"
|
106
|
+
- ".rspec"
|
107
|
+
- ".rubocop.yml"
|
108
|
+
- ".travis.yml"
|
109
|
+
- Gemfile
|
110
|
+
- LICENSE.txt
|
111
|
+
- README.md
|
112
|
+
- Rakefile
|
113
|
+
- lib/pigspec.rb
|
114
|
+
- lib/pigspec/javabridge.rb
|
115
|
+
- lib/pigspec/version.rb
|
116
|
+
- pigspec.gemspec
|
117
|
+
- spec/pig/counting_macro.pig
|
118
|
+
- spec/pig/test.pig
|
119
|
+
- spec/pig/test2.pig
|
120
|
+
- spec/pig/test_macro.pig
|
121
|
+
- spec/pigspec_spec.rb
|
122
|
+
- spec/spec_helper.rb
|
123
|
+
homepage: https://github.com/shiracha/pigspec
|
124
|
+
licenses:
|
125
|
+
- MIT
|
126
|
+
metadata: {}
|
127
|
+
post_install_message:
|
128
|
+
rdoc_options: []
|
129
|
+
require_paths:
|
130
|
+
- lib
|
131
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
requirements: []
|
142
|
+
rubyforge_project:
|
143
|
+
rubygems_version: 2.2.2
|
144
|
+
signing_key:
|
145
|
+
specification_version: 4
|
146
|
+
summary: A Testing Framework extension for Apache Pig.
|
147
|
+
test_files:
|
148
|
+
- spec/pig/counting_macro.pig
|
149
|
+
- spec/pig/test.pig
|
150
|
+
- spec/pig/test2.pig
|
151
|
+
- spec/pig/test_macro.pig
|
152
|
+
- spec/pigspec_spec.rb
|
153
|
+
- spec/spec_helper.rb
|