ruby-skyline-core 0.1.1 → 0.1.2

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: 3f20c2002bf4a8fe2dd4b3bc59fd31cc98c048fb
4
- data.tar.gz: d6db77f0533db092a4121a76caee4b9830f18cda
3
+ metadata.gz: 410cb811b454e125c5d089a3fdbf9edac03dd182
4
+ data.tar.gz: 3bb3131706133dfa9919113b05c441b3c0ceaebe
5
5
  SHA512:
6
- metadata.gz: 38c01c05aaf9ab6a55a4ef90e3a9281c959e59430d9184b59d158c13e99c1bdcb17e4822bfd898bbab4e56e7dcc91fca7fc3129b1f6dabffd9886fc4a290e194
7
- data.tar.gz: 329f70095f5b75f5c8bc30f84a7f362fce1f7302c12fb762f35a887219d51cff5954e0166197f4c1e1279348e238bf94234641163cbf6a3d9df18ec23042962c
6
+ metadata.gz: f80d36675be6646944acb9c723fcef0b9502d4bcd574b1557e6a9127feb6f418749ca9aa1b47fbbc403e9e3a00f9bf8ed20e4291a37962d778202edad6e38038
7
+ data.tar.gz: 7fda9f469ed14c416e2fa0fbf359cc8ff2b6471aa2942b3177b57d91abf6bea556995e6f25b599703c67e37029c9e76d8769830f9088c92879012ac5e4b96cf4
data/.gitignore CHANGED
@@ -7,3 +7,5 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+
11
+ *.gem
data/README.md CHANGED
@@ -1,53 +1,54 @@
1
- <a href="https://codeclimate.com/github/shadow3x3x3/ruby-skyline-core"><img src="https://codeclimate.com/github/shadow3x3x3/ruby-skyline-core/badges/gpa.svg" /></a>
2
- [![Build Status](https://travis-ci.org/shadow3x3x3/ruby-skyline-core.svg?branch=master)](https://travis-ci.org/shadow3x3x3/ruby-skyline-core)
3
-
4
- # Ruby Skyline Core
5
-
6
- Comparing two datas that are multiple attributes. With Skyline Query definition.
7
-
8
- ## Installation
9
-
10
- Add this line to your application's Gemfile:
11
-
12
- ```ruby
13
- gem 'ruby-skyline-core'
14
- ```
15
-
16
- And then execute:
17
-
18
- $ bundle
19
-
20
- Or install it yourself as:
21
-
22
- $ gem install ruby-skyline-core
23
-
24
- ## Usage
25
-
26
- Using any Fixnum Array to check dominating with other Array
27
-
28
- ```ruby
29
- [1, 3].dominate?[4, 5] # true
30
- [4, 5].dominate?[1, 2] # true
31
- ```
32
-
33
- If no array can dominate each other, it return nil.
34
-
35
- ```ruby
36
- [2, 3].dominate?[1, 4] # nil
37
- ```
38
-
39
- ## Development
40
-
41
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
42
-
43
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
44
-
45
- ## Contributing
46
-
47
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruby-skyline-core.
48
-
49
-
50
- ## License
51
-
52
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
53
-
1
+ <a href="https://codeclimate.com/github/shadow3x3x3/ruby-skyline-core"><img src="https://codeclimate.com/github/shadow3x3x3/ruby-skyline-core/badges/gpa.svg" /></a>
2
+ [![Build Status](https://travis-ci.org/shadow3x3x3/ruby-skyline-core.svg?branch=master)](https://travis-ci.org/shadow3x3x3/ruby-skyline-core)
3
+ [![Gem Version](https://badge.fury.io/rb/ruby-skyline-core.svg)](https://badge.fury.io/rb/ruby-skyline-core)
4
+
5
+ # Ruby Skyline Core
6
+
7
+ Comparing two datas that are multiple attributes. With Skyline Query definition.
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'ruby-skyline-core'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install ruby-skyline-core
24
+
25
+ ## Usage
26
+
27
+ Using any Fixnum Array to check dominating with other Array
28
+
29
+ ```ruby
30
+ [1, 3].dominate?[4, 5] # true
31
+ [4, 5].dominate?[1, 2] # false
32
+ ```
33
+
34
+ If no array can dominate each other, it return nil.
35
+
36
+ ```ruby
37
+ [2, 3].dominate?[1, 4] # nil
38
+ ```
39
+
40
+ ## Development
41
+
42
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
43
+
44
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
45
+
46
+ ## Contributing
47
+
48
+ Bug reports and pull requests are welcome on GitHub at https://github.com/shadow3x3x3/ruby-skyline-core.
49
+
50
+
51
+ ## License
52
+
53
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
54
+
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module RubySkylineCore
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - shadow3x3x3
@@ -70,8 +70,6 @@ files:
70
70
  - bin/console
71
71
  - bin/setup
72
72
  - lib/ruby-skyline-core.rb
73
- - lib/ruby/skyline/core.rb
74
- - lib/ruby/skyline/core/version.rb
75
73
  - lib/version.rb
76
74
  - ruby-skyline-core.gemspec
77
75
  homepage: http://github.com/shadow3x3x3/ruby-skyline-core
@@ -1,7 +0,0 @@
1
- module Ruby
2
- module Skyline
3
- module Core
4
- VERSION = "0.1.0"
5
- end
6
- end
7
- end
@@ -1,9 +0,0 @@
1
- require "ruby/skyline/core/version"
2
-
3
- module Ruby
4
- module Skyline
5
- module Core
6
- # Your code goes here...
7
- end
8
- end
9
- end