ruby-skyline-core 0.1.2 → 0.1.3

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: 410cb811b454e125c5d089a3fdbf9edac03dd182
4
- data.tar.gz: 3bb3131706133dfa9919113b05c441b3c0ceaebe
3
+ metadata.gz: af187e359b66fa22643797a34f0ade67d8d2dec6
4
+ data.tar.gz: 8fa0f34f81e43937ce79d2c832d5c43139b25441
5
5
  SHA512:
6
- metadata.gz: f80d36675be6646944acb9c723fcef0b9502d4bcd574b1557e6a9127feb6f418749ca9aa1b47fbbc403e9e3a00f9bf8ed20e4291a37962d778202edad6e38038
7
- data.tar.gz: 7fda9f469ed14c416e2fa0fbf359cc8ff2b6471aa2942b3177b57d91abf6bea556995e6f25b599703c67e37029c9e76d8769830f9088c92879012ac5e4b96cf4
6
+ metadata.gz: c4114ffac94f1be12040171f5c6c7dacc5c9a2548d8db85eabb390a1dd772bef5ec3c9a9237609002561c7e5efb8bf976516dd3bd8645dcccea1b9575d854a84
7
+ data.tar.gz: e6f2ce3ef31cd3bdda9df34f2e2933fd7322bd964f7449a5fd7e7cfe3a45d7457bdc95794be8b13abc18344e6c3e2e9e560e2a97eb3ccdd46e9ebeefabc41b27
data/README.md CHANGED
@@ -27,14 +27,14 @@ Or install it yourself as:
27
27
  Using any Fixnum Array to check dominating with other Array
28
28
 
29
29
  ```ruby
30
- [1, 3].dominate?[4, 5] # true
31
- [4, 5].dominate?[1, 2] # false
30
+ [1, 3].dominate?([4, 5]) # true
31
+ [4, 5].dominate?([1, 2]) # false
32
32
  ```
33
33
 
34
34
  If no array can dominate each other, it return nil.
35
35
 
36
36
  ```ruby
37
- [2, 3].dominate?[1, 4] # nil
37
+ [2, 3].dominate?([1, 4]) # nil
38
38
  ```
39
39
 
40
40
  ## Development
@@ -27,11 +27,3 @@ class Array
27
27
  aggregate_array
28
28
  end
29
29
  end
30
-
31
- module Ruby
32
- module Skyline
33
- module Core
34
- VERSION = "0.1.0"
35
- end
36
- end
37
- end
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RubySkylineCore
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-skyline-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - shadow3x3x3