mathn 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/mathn.gemspec +2 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abbade75718d3d2a07a2bad4fd439d4565074cde
|
4
|
+
data.tar.gz: 2475ff4428b7068e36d33e603953874feafd7b08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9af8febb3961a7b059cde2a0d06ee5605052e8f405868a6ac480b07f24d31c56959e00a23aee519a840e11b5a28ce7f99e753393a962e67a3f334ded766ed524
|
7
|
+
data.tar.gz: 59e0d593a58f40f153afa2e4214cdc19cf7868aa47c6c2bd9d8d9395d0f5d7c25c8e227ec9c00bd18c1c2e0262e53e4ff233beb512f7cf394c115bb142a2ae3f
|
data/mathn.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
Gem::Specification.new do |spec|
|
3
3
|
spec.name = "mathn"
|
4
|
-
spec.version = "0.0
|
4
|
+
spec.version = "0.1.0"
|
5
5
|
spec.authors = ["Keiju ISHITSUKA"]
|
6
6
|
spec.email = [nil]
|
7
7
|
|
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
14
14
|
f.match(%r{^(test|spec|features)/})
|
15
15
|
end
|
16
|
+
spec.extensions = ["ext/mathn/complex/extconf.rb", "ext/mathn/rational/extconf.rb"]
|
16
17
|
spec.bindir = "exe"
|
17
18
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
18
19
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mathn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Keiju ISHITSUKA
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-05-
|
11
|
+
date: 2017-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -56,7 +56,9 @@ description: Deprecated library that extends math operations.
|
|
56
56
|
email:
|
57
57
|
-
|
58
58
|
executables: []
|
59
|
-
extensions:
|
59
|
+
extensions:
|
60
|
+
- ext/mathn/complex/extconf.rb
|
61
|
+
- ext/mathn/rational/extconf.rb
|
60
62
|
extra_rdoc_files: []
|
61
63
|
files:
|
62
64
|
- ".gitignore"
|