hitokage 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2745cba975ccab0dc1c7c0d3ab657c5e658ba1fd
4
- data.tar.gz: 0061376f8f16a7ececdee22bb067b81e55b9f582
3
+ metadata.gz: b60c885ccaed34b9d6d5506e53a33ee6a34986fd
4
+ data.tar.gz: a29ef80b98707c2290d0674f902ce6fe70486929
5
5
  SHA512:
6
- metadata.gz: 2b3dd04ee315ed0cd5c20a028d10f43ba814d1dfef98c9201834bb58f605dd50ea35c295c5e5b9c1fbb0192e673068be15ad602cad08b709b319b00b7b8b3c88
7
- data.tar.gz: deefe95ee48c9d90906cb7a646e7ad83ff3ee57bc7a0e1a16633e92ac582c52c1d0ab8b41fc50ca955ce897e379f17efa3aef65cb926e574f42dec4d1fb6a143
6
+ metadata.gz: 87ec709bf2cd1ca06ed42aedbda202aeb791596c0ec43034afc4a80a90f77a92bd9ad4d655486e06a62157902957a382190bdf86ec8fc3b5dcb0b7d93f79f6d7
7
+ data.tar.gz: b8d6ddde22bee6f4b0b29931e82085d104d1070088cbc14048cbe655c3e1087adc35b11eade41d42bce66a4a69899d0c161109dbcfc3b38ab1849382a1a3c134
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Soutaro Matsumoto"]
10
10
  spec.email = ["matsumoto@soutaro.com"]
11
11
 
12
- spec.summary = %q{Yet another float to string conversion, a bit faster than Float#to_s}
13
- spec.description = %q{Yet another float to string conversion}
12
+ spec.summary = %q{Faster Float#to_s}
13
+ spec.description = %q{Faster float to string conversion.}
14
14
  spec.homepage = "https://github.com/soutaro/hitokage"
15
15
  spec.license = "MIT"
16
16
 
@@ -18,6 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.bindir = "exe"
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
+ spec.extensions = %w[ext/hitokage_ext/extconf.rb]
21
22
 
22
23
  spec.add_development_dependency "bundler", "~> 1.11"
23
24
  spec.add_development_dependency "rake", "~> 10.0"
@@ -1,3 +1,3 @@
1
1
  module Hitokage
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hitokage
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto
@@ -66,11 +66,12 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.9.7
69
- description: Yet another float to string conversion
69
+ description: Faster float to string conversion.
70
70
  email:
71
71
  - matsumoto@soutaro.com
72
72
  executables: []
73
- extensions: []
73
+ extensions:
74
+ - ext/hitokage_ext/extconf.rb
74
75
  extra_rdoc_files: []
75
76
  files:
76
77
  - ".gitignore"
@@ -132,5 +133,5 @@ rubyforge_project:
132
133
  rubygems_version: 2.5.1
133
134
  signing_key:
134
135
  specification_version: 4
135
- summary: Yet another float to string conversion, a bit faster than Float#to_s
136
+ summary: Faster Float#to_s
136
137
  test_files: []