red-arrow 0.8.2 → 0.10.0
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 +5 -5
- data/Gemfile +14 -11
- data/{doc/text/apache-2.0.txt → LICENSE.txt} +0 -0
- data/NOTICE.txt +2 -0
- data/README.md +27 -30
- data/Rakefile +15 -21
- data/dependency-check/Rakefile +15 -12
- data/doc/text/development.md +19 -0
- data/lib/arrow.rb +14 -11
- data/lib/arrow/array-builder.rb +55 -55
- data/lib/arrow/array.rb +15 -11
- data/lib/arrow/block-closable.rb +14 -11
- data/lib/arrow/chunked-array.rb +15 -11
- data/lib/arrow/column.rb +14 -11
- data/lib/arrow/csv-loader.rb +49 -20
- data/lib/arrow/csv-reader.rb +14 -11
- data/lib/arrow/date32-array-builder.rb +14 -11
- data/lib/arrow/date32-array.rb +14 -11
- data/lib/arrow/date64-array-builder.rb +15 -12
- data/lib/arrow/date64-array.rb +14 -11
- data/lib/arrow/field.rb +14 -11
- data/lib/arrow/group.rb +55 -13
- data/lib/arrow/loader.rb +16 -15
- data/lib/arrow/record-batch-file-reader.rb +14 -11
- data/lib/arrow/record-batch-stream-reader.rb +14 -11
- data/lib/arrow/record-batch.rb +14 -11
- data/lib/arrow/record-containable.rb +14 -11
- data/lib/arrow/record.rb +14 -11
- data/lib/arrow/rolling-window.rb +48 -0
- data/lib/arrow/slicer.rb +20 -14
- data/lib/arrow/struct-array.rb +24 -0
- data/lib/arrow/table-formatter.rb +15 -11
- data/lib/arrow/table-list-formatter.rb +15 -11
- data/lib/arrow/table-loader.rb +24 -11
- data/lib/arrow/table-saver.rb +14 -11
- data/lib/arrow/table-table-formatter.rb +15 -11
- data/lib/arrow/table.rb +48 -17
- data/lib/arrow/tensor.rb +14 -11
- data/lib/arrow/timestamp-array-builder.rb +16 -29
- data/lib/arrow/timestamp-array.rb +15 -30
- data/lib/arrow/version.rb +23 -12
- data/red-arrow.gemspec +30 -30
- data/test/fixture/TestOrcFile.test1.orc +0 -0
- data/test/fixture/float-integer.csv +20 -0
- data/test/fixture/integer-float.csv +20 -0
- data/test/fixture/null-with-double-quote.csv +16 -0
- data/test/fixture/null-without-double-quote.csv +16 -0
- data/test/fixture/with-header-float.csv +20 -0
- data/test/fixture/with-header.csv +16 -0
- data/test/fixture/without-header-float.csv +19 -0
- data/test/fixture/without-header.csv +16 -0
- data/test/helper.rb +16 -11
- data/test/helper/fixture.rb +14 -11
- data/test/run-test.rb +17 -12
- data/test/test-array-builder.rb +14 -11
- data/test/test-array.rb +14 -11
- data/test/test-chunked-array.rb +14 -11
- data/test/test-column.rb +14 -11
- data/test/test-csv-loader.rb +68 -49
- data/test/test-csv-reader.rb +17 -12
- data/test/test-date32-array.rb +14 -11
- data/test/test-date64-array.rb +14 -11
- data/test/test-group.rb +56 -11
- data/test/test-orc.rb +177 -0
- data/test/test-record-batch-file-reader.rb +14 -11
- data/test/test-record-batch.rb +14 -11
- data/test/test-rolling-window.rb +40 -0
- data/test/test-slicer.rb +14 -11
- data/test/test-struct-array.rb +36 -0
- data/test/test-table.rb +50 -22
- data/test/test-timestamp-array.rb +14 -11
- metadata +42 -57
- data/.yardopts +0 -6
- data/doc/text/news.md +0 -176
- data/lib/arrow/buffer.rb +0 -24
- data/lib/arrow/compatibility.rb +0 -28
- data/lib/arrow/data-type.rb +0 -81
data/lib/arrow/table-saver.rb
CHANGED
@@ -1,16 +1,19 @@
|
|
1
|
-
#
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
2
8
|
#
|
3
|
-
#
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
10
|
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
# limitations under the License.
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
14
17
|
|
15
18
|
module Arrow
|
16
19
|
class TableSaver
|
@@ -1,20 +1,24 @@
|
|
1
|
-
#
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
2
8
|
#
|
3
|
-
#
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
10
|
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
# limitations under the License.
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
14
17
|
|
15
18
|
require "time"
|
16
19
|
|
17
20
|
module Arrow
|
21
|
+
# TODO: Almost codes should be implemented in Apache Arrow C++.
|
18
22
|
class TableTableFormatter < TableFormatter
|
19
23
|
private
|
20
24
|
def format_header(text, columns)
|
data/lib/arrow/table.rb
CHANGED
@@ -1,16 +1,19 @@
|
|
1
|
-
#
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
2
8
|
#
|
3
|
-
#
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
10
|
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
# limitations under the License.
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
14
17
|
|
15
18
|
require "arrow/group"
|
16
19
|
require "arrow/record-containable"
|
@@ -70,7 +73,30 @@ module Arrow
|
|
70
73
|
# TODO
|
71
74
|
#
|
72
75
|
# @return [Arrow::Table]
|
73
|
-
def slice(*
|
76
|
+
def slice(*args)
|
77
|
+
slicers = []
|
78
|
+
expected_n_args = nil
|
79
|
+
case args.size
|
80
|
+
when 0
|
81
|
+
expected_n_args = "1..2" unless block_given?
|
82
|
+
when 1
|
83
|
+
slicers << args[0]
|
84
|
+
when 2
|
85
|
+
from, to = args
|
86
|
+
slicers << (from...(from + to))
|
87
|
+
else
|
88
|
+
if block_given?
|
89
|
+
expected_n_args = "0..2"
|
90
|
+
else
|
91
|
+
expected_n_args = "1..2"
|
92
|
+
end
|
93
|
+
end
|
94
|
+
if expected_n_args
|
95
|
+
message = "wrong number of arguments " +
|
96
|
+
"(given #{args.size}, expected #{expected_n_args})"
|
97
|
+
raise ArgumentError, message
|
98
|
+
end
|
99
|
+
|
74
100
|
if block_given?
|
75
101
|
block_slicer = yield(Slicer.new(self))
|
76
102
|
case block_slicer
|
@@ -82,6 +108,7 @@ module Arrow
|
|
82
108
|
slicers << block_slicer
|
83
109
|
end
|
84
110
|
end
|
111
|
+
|
85
112
|
ranges = []
|
86
113
|
slicers.each do |slicer|
|
87
114
|
slicer = slicer.evaluate if slicer.respond_to?(:evaluate)
|
@@ -97,10 +124,7 @@ module Arrow
|
|
97
124
|
to += n_rows if to < 0
|
98
125
|
ranges << [from, to]
|
99
126
|
when ::Array
|
100
|
-
|
101
|
-
from += n_rows if from < 0
|
102
|
-
to = from + slicer[1] - 1
|
103
|
-
ranges << [from, to]
|
127
|
+
boolean_array_to_slice_ranges(slicer, 0, ranges)
|
104
128
|
when ChunkedArray
|
105
129
|
offset = 0
|
106
130
|
slicer.each_chunk do |array|
|
@@ -110,7 +134,7 @@ module Arrow
|
|
110
134
|
when BooleanArray
|
111
135
|
boolean_array_to_slice_ranges(slicer, 0, ranges)
|
112
136
|
else
|
113
|
-
message = "slicer must be Integer, Range,
|
137
|
+
message = "slicer must be Integer, Range, (from, to), " +
|
114
138
|
"Arrow::ChunkedArray of Arrow::BooleanArray, " +
|
115
139
|
"Arrow::BooleanArray or Arrow::Slicer::Condition: #{slicer.inspect}"
|
116
140
|
raise ArgumentError, message
|
@@ -224,10 +248,16 @@ module Arrow
|
|
224
248
|
self.class.new(selected_columns)
|
225
249
|
end
|
226
250
|
|
251
|
+
# Experimental
|
227
252
|
def group(*keys)
|
228
253
|
Group.new(self, keys)
|
229
254
|
end
|
230
255
|
|
256
|
+
# Experimental
|
257
|
+
def window(size: nil)
|
258
|
+
RollingWindow.new(self, size)
|
259
|
+
end
|
260
|
+
|
231
261
|
def save(path, options={})
|
232
262
|
saver = TableSaver.new(self, path, options)
|
233
263
|
saver.save
|
@@ -291,6 +321,7 @@ module Arrow
|
|
291
321
|
end
|
292
322
|
end
|
293
323
|
|
324
|
+
# TODO: Almost codes should be implemented in Apache Arrow C++.
|
294
325
|
def slice_by_ranges(ranges)
|
295
326
|
sliced_columns = columns.collect do |column|
|
296
327
|
chunks = []
|
data/lib/arrow/tensor.rb
CHANGED
@@ -1,16 +1,19 @@
|
|
1
|
-
#
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
2
8
|
#
|
3
|
-
#
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
10
|
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
# limitations under the License.
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
14
17
|
|
15
18
|
module Arrow
|
16
19
|
class Tensor
|
@@ -1,38 +1,25 @@
|
|
1
|
-
#
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
2
8
|
#
|
3
|
-
#
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
10
|
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
# limitations under the License.
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
14
17
|
|
15
18
|
module Arrow
|
16
19
|
class TimestampArrayBuilder
|
17
|
-
# TODO: Workaround for Apache Arrow GLib 0.8.0
|
18
|
-
alias_method :initialize_raw, :initialize
|
19
|
-
def initialize(data_type)
|
20
|
-
initialize_raw(data_type)
|
21
|
-
data_type_name = data_type.to_s
|
22
|
-
if data_type_name.end_with?("[s]")
|
23
|
-
@unit_id = :second
|
24
|
-
elsif data_type_name.end_with?("[ms]")
|
25
|
-
@unit_id = :milli
|
26
|
-
elsif data_type_name.end_with?("[us]")
|
27
|
-
@unit_id = :micro
|
28
|
-
else
|
29
|
-
@unit_id = :nano
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
20
|
private
|
34
21
|
def unit_id
|
35
|
-
@unit_id ||= unit.nick.to_sym
|
22
|
+
@unit_id ||= value_data_type.unit.nick.to_sym
|
36
23
|
end
|
37
24
|
|
38
25
|
def convert_to_arrow_value(value)
|
@@ -45,7 +32,7 @@ module Arrow
|
|
45
32
|
when :second
|
46
33
|
value.to_i
|
47
34
|
when :milli
|
48
|
-
value.to_i * 1_000 + value.usec /
|
35
|
+
value.to_i * 1_000 + value.usec / 1_000
|
49
36
|
when :micro
|
50
37
|
value.to_i * 1_000_000 + value.usec
|
51
38
|
else
|
@@ -1,16 +1,19 @@
|
|
1
|
-
#
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
2
8
|
#
|
3
|
-
#
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
10
|
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
# limitations under the License.
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
14
17
|
|
15
18
|
module Arrow
|
16
19
|
class TimestampArray
|
@@ -27,7 +30,7 @@ module Arrow
|
|
27
30
|
end
|
28
31
|
|
29
32
|
def unit
|
30
|
-
@unit ||=
|
33
|
+
@unit ||= value_data_type.unit
|
31
34
|
end
|
32
35
|
|
33
36
|
private
|
@@ -35,24 +38,6 @@ module Arrow
|
|
35
38
|
@unit_id ||= unit.nick.to_sym
|
36
39
|
end
|
37
40
|
|
38
|
-
def value_data_type_unit
|
39
|
-
data_type = value_data_type
|
40
|
-
if data_type.respond_to?(:unit)
|
41
|
-
data_type.unit
|
42
|
-
else
|
43
|
-
data_type_name = data_type.to_s
|
44
|
-
if data_type_name.end_with?("[s]")
|
45
|
-
TimeUnit::SECOND
|
46
|
-
elsif data_type_name.end_with?("[ms]")
|
47
|
-
TimeUnit::MILLI
|
48
|
-
elsif data_type_name.end_with?("[us]")
|
49
|
-
TimeUnit::MICRO
|
50
|
-
else
|
51
|
-
TimeUnit::NANO
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
41
|
def to_time(raw_value)
|
57
42
|
case unit_id
|
58
43
|
when :second
|
data/lib/arrow/version.rb
CHANGED
@@ -1,17 +1,28 @@
|
|
1
|
-
#
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
2
8
|
#
|
3
|
-
#
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
10
|
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
# limitations under the License.
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
14
17
|
|
15
18
|
module Arrow
|
16
|
-
|
19
|
+
module Version
|
20
|
+
MAJOR = 0
|
21
|
+
MINOR = 10
|
22
|
+
MICRO = 0
|
23
|
+
TAG =
|
24
|
+
STRING = "0.10.0"
|
25
|
+
end
|
26
|
+
|
27
|
+
VERSION = Version::STRING
|
17
28
|
end
|
data/red-arrow.gemspec
CHANGED
@@ -1,42 +1,44 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
#
|
3
|
-
#
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
4
10
|
#
|
5
|
-
#
|
6
|
-
# you may not use this file except in compliance with the License.
|
7
|
-
# You may obtain a copy of the License at
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
12
|
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
# limitations under the License.
|
16
|
-
|
17
|
-
clean_white_space = lambda do |entry|
|
18
|
-
entry.gsub(/(\A\n+|\n+\z)/, '') + "\n"
|
19
|
-
end
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
20
19
|
|
21
|
-
|
22
|
-
require "arrow/version"
|
20
|
+
require_relative "version"
|
23
21
|
|
24
22
|
Gem::Specification.new do |spec|
|
25
23
|
spec.name = "red-arrow"
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
24
|
+
version_components = [
|
25
|
+
Arrow::Version::MAJOR.to_s,
|
26
|
+
Arrow::Version::MINOR.to_s,
|
27
|
+
Arrow::Version::MICRO.to_s,
|
28
|
+
# "beta1",
|
29
|
+
]
|
30
|
+
spec.version = version_components.join(".")
|
31
|
+
spec.homepage = "https://arrow.apache.org/"
|
32
|
+
spec.authors = ["Apache Arrow Developers"]
|
33
|
+
spec.email = ["dev@arrow.apache.org"]
|
30
34
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
description = clean_white_space.call(entries[entries.index("Description") + 1])
|
36
|
-
spec.summary, spec.description, = description.split(/\n\n+/, 3)
|
35
|
+
spec.summary = "Red Arrow is the Ruby bindings of Apache Arrow"
|
36
|
+
spec.description =
|
37
|
+
"Apache Arrow is a common in-memory columnar data store. " +
|
38
|
+
"It's useful to share and process large data."
|
37
39
|
spec.license = "Apache-2.0"
|
38
40
|
spec.files = ["README.md", "Rakefile", "Gemfile", "#{spec.name}.gemspec"]
|
39
|
-
spec.files += [".
|
41
|
+
spec.files += ["LICENSE.txt", "NOTICE.txt"]
|
40
42
|
spec.files += Dir.glob("lib/**/*.rb")
|
41
43
|
spec.files += Dir.glob("image/*.*")
|
42
44
|
spec.files += Dir.glob("doc/text/*")
|
@@ -50,6 +52,4 @@ Gem::Specification.new do |spec|
|
|
50
52
|
spec.add_development_dependency("bundler")
|
51
53
|
spec.add_development_dependency("rake")
|
52
54
|
spec.add_development_dependency("test-unit")
|
53
|
-
spec.add_development_dependency("packnga")
|
54
|
-
spec.add_development_dependency("kramdown")
|
55
55
|
end
|