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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cfaf360678c948e304636c08775415b80c939336
4
- data.tar.gz: 674a5ac949c408ca71a71edf15b822a186291053
3
+ metadata.gz: 62440c109267fe60df37f71029cc783cd89d19c6
4
+ data.tar.gz: d2c8f0e70eaa6829be286dc0fada901b15587304
5
5
  SHA512:
6
- metadata.gz: 8f175c30399ffcd953b06af561f4d085d3be99c0540f0fc31516b6f75c22ca5ad5028c3fdd709310c862190c97c1e129637262bbc9fbad3a637aa4f042009d59
7
- data.tar.gz: c43c73c97999899029756dd73e2199a61181b27edfa5082fad799d70eb7f0ee7f14b346ed3e9fd2ce2f409440e30dd9c0b22b784526ff32201b87e1fc973f762
6
+ metadata.gz: b09f5e85f78eb7059ac2940c0b316bcf10019463c30583f6ea2af662e3649f3e6ae85a85ee1766ae68b4bb229ff047a560b0e1e8c19afde7c6f2ec96eda4276b
7
+ data.tar.gz: 416e6551a17fae866e69b44477baf2627f0220c56cdfd32e01b32469b58de1d7d5ce266bda8eaf0c2e22d407bd9a0a4e012de6922f1426de5edf2e612b72a048
data/.travis.yml CHANGED
@@ -1,5 +1,4 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 1.8.7
4
3
  - 1.9.3
5
4
  - 2.0.0
@@ -15,6 +15,9 @@
15
15
  static VALUE mNumTheory;
16
16
  static ID primality_tests_ID;
17
17
 
18
+ ID id_rand, id_mod, id_divmod, id_div,
19
+ id_gcd, id_lcm, id_pow, id_mul;
20
+
18
21
  static unsigned long PRIMES_UPPER_LIMIT = 3141592;
19
22
  static unsigned long NUM_OF_PRIMES;
20
23
 
@@ -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
- id_gcd, id_lcm, id_pow, id_mul;
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
 
@@ -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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-numtheory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Tarasov