chunkio 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/chunkio.gemspec +2 -0
- data/lib/chunkio/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2dacb80115dac7f7ee66fd6861676d8bf067094a3fc665d07c5ea743182573e8
|
4
|
+
data.tar.gz: fed0c298eac59c86d2750569e6301b3c4bab9386597ab651db033f0a4d4200e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f60a3da59e787f0307fc42808ab73e785779cb9b17fd408456866130eb797741a7d77a67b39f41cb35da7a2ac4ae1e92b92e4f8e105e94169e1a0ca7727a0deb
|
7
|
+
data.tar.gz: c6f92cd5115314caa020c43780a92aa07741dfc8b55474a87bfc6bbf009f09cdd49fe5eeb228adb71b19f5a604f105c50a9e2bddae687d9f432eb00bae359ba0
|
data/chunkio.gemspec
CHANGED
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.summary = 'Wrapper of chunkio'
|
14
14
|
spec.description = 'Wrapper of chunkio'
|
15
15
|
spec.homepage = 'https://github.com/ganmacs/chunkio-rb'
|
16
|
+
spec.license = 'Apache-2.0'
|
16
17
|
|
17
18
|
# Specify which files should be added to the gem when it is released.
|
18
19
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
@@ -22,6 +23,7 @@ Gem::Specification.new do |spec|
|
|
22
23
|
spec.bindir = 'exe'
|
23
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
25
|
spec.require_paths = ['lib']
|
26
|
+
spec.extensions = ['ext/chunkio/extconf.rb']
|
25
27
|
|
26
28
|
spec.add_runtime_dependency 'mini_portile2', '>= 2.2.0'
|
27
29
|
|
data/lib/chunkio/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chunkio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yuta Iwama
|
@@ -98,7 +98,8 @@ description: Wrapper of chunkio
|
|
98
98
|
email:
|
99
99
|
- ganmacs@gmail.com
|
100
100
|
executables: []
|
101
|
-
extensions:
|
101
|
+
extensions:
|
102
|
+
- ext/chunkio/extconf.rb
|
102
103
|
extra_rdoc_files: []
|
103
104
|
files:
|
104
105
|
- ".editorconfig"
|
@@ -123,7 +124,8 @@ files:
|
|
123
124
|
- lib/chunkio/chunkio.rb
|
124
125
|
- lib/chunkio/version.rb
|
125
126
|
homepage: https://github.com/ganmacs/chunkio-rb
|
126
|
-
licenses:
|
127
|
+
licenses:
|
128
|
+
- Apache-2.0
|
127
129
|
metadata: {}
|
128
130
|
post_install_message:
|
129
131
|
rdoc_options: []
|