ruby-numtheory 0.0.8 → 0.0.8.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 +4 -4
- data/.travis.yml +0 -1
- data/ext/numtheory/numtheory.c +3 -0
- data/ext/numtheory/numtheory.h +2 -2
- data/ruby-numtheory.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62440c109267fe60df37f71029cc783cd89d19c6
|
|
4
|
+
data.tar.gz: d2c8f0e70eaa6829be286dc0fada901b15587304
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b09f5e85f78eb7059ac2940c0b316bcf10019463c30583f6ea2af662e3649f3e6ae85a85ee1766ae68b4bb229ff047a560b0e1e8c19afde7c6f2ec96eda4276b
|
|
7
|
+
data.tar.gz: 416e6551a17fae866e69b44477baf2627f0220c56cdfd32e01b32469b58de1d7d5ce266bda8eaf0c2e22d407bd9a0a4e012de6922f1426de5edf2e612b72a048
|
data/.travis.yml
CHANGED
data/ext/numtheory/numtheory.c
CHANGED
data/ext/numtheory/numtheory.h
CHANGED
|
@@ -23,8 +23,8 @@ inline static char* TO_CSTRING(VALUE x) {
|
|
|
23
23
|
}
|
|
24
24
|
#endif
|
|
25
25
|
|
|
26
|
-
ID id_rand, id_mod, id_divmod, id_div,
|
|
27
|
-
|
|
26
|
+
extern ID id_rand, id_mod, id_divmod, id_div,
|
|
27
|
+
id_gcd, id_lcm, id_pow, id_mul;
|
|
28
28
|
|
|
29
29
|
extern const VALUE zero,one,two,three,four,five,six,seven,eight;
|
|
30
30
|
|
data/ruby-numtheory.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ Gem::Specification.new do |gem|
|
|
|
3
3
|
gem.homepage = "http://github.com/lomereiter/ruby-numtheory"
|
|
4
4
|
gem.license = "MIT"
|
|
5
5
|
gem.summary = "Ruby number theory library"
|
|
6
|
-
gem.version = "0.0.8"
|
|
6
|
+
gem.version = "0.0.8.1"
|
|
7
7
|
gem.platform = Gem::Platform::RUBY
|
|
8
8
|
|
|
9
9
|
gem.description = <<-EOF
|