unleashed 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc6c61cb0fee34c45afd5be86d9b6d20aa7809f84c04455d32f474d90fc6ad9a
4
- data.tar.gz: 983942b05c5300e58065028ad6ecde4e44e52355642ddbd5208d4f3ee00421aa
3
+ metadata.gz: ab9f52896f8b680ac28a67a8716d0e1bafb0213be69e5e3c4ff6ceb1f6898f0e
4
+ data.tar.gz: 9facbcd5c5592d277b3cb3220534a38629c7d109556c971fd48f129e73c05331
5
5
  SHA512:
6
- metadata.gz: 61c519958e8b90605564355540abafb38c2ead3080f333b2423a7dee667923e883fd6640e9ed70da8427ad6e9b4c77ed0ed9d5095f53b9def32299017e9331a0
7
- data.tar.gz: 9de8ed27c407583495a347808ec11e94c766fa11a7b4559d39040215aae438150b9e0572556f31fb766bebb7ec767e9fb04091241824080b7edfc3971826904a
6
+ metadata.gz: e4195bce78819508d81b6ec88b7b166e7a4cb84a7338e26b90bb58e6b5e88e45d2e35a1428af19df4447cab4599e698e78516abc9fa455a1c828c3975ea5b3eb
7
+ data.tar.gz: 2f045fc73f056945c9288efb6cf1144ce8f6e29032dbe1a76445614f441e48b32f1d8bd1ec1f42260b1e667147af27d0b1d1a359d903bd3f182f4ad5d3dbb731
data/CODE_OF_CONDUCT.md CHANGED
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
55
55
  ## Enforcement
56
56
 
57
57
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at nhan@gos.com.vn. All
58
+ reported by contacting the project team at nnhansg@gmail.com. All
59
59
  complaints will be reviewed and investigated and will result in a response that
60
60
  is deemed necessary and appropriate to the circumstances. The project team is
61
61
  obligated to maintain confidentiality with regard to the reporter of an incident.
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Unleashed
2
2
 
3
- Ruby gem for invoking Unleashedsoftware RESTful API https://apidocs.unleashedsoftware.com
3
+ Ruby gem for invoking Unleashedsoftware RESTful API [https://apidocs.unleashedsoftware.com](https://apidocs.unleashedsoftware.com)
4
4
 
5
- ## Installation
5
+ ## 1. Installation
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
@@ -18,24 +18,22 @@ Or install it yourself as:
18
18
 
19
19
  $ gem install unleashed
20
20
 
21
- ## Usage
21
+ ## 2. Usage
22
22
 
23
23
  TODO: Write usage instructions here
24
24
 
25
- ## Development
25
+ ## 3. Contributing
26
26
 
27
- 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.
27
+ 1. Fork it [https://github.com/nnhansg/unleashed-ruby](https://github.com/nnhansg/unleashed-ruby)
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
28
32
 
29
- 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).
30
-
31
- ## Contributing
32
-
33
- Bug reports and pull requests are welcome on GitHub at https://github.com/nnhansg/unleashed-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
34
-
35
- ## License
33
+ ## 4. License
36
34
 
37
35
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
38
36
 
39
- ## Code of Conduct
37
+ ## 5. Code of Conduct
40
38
 
41
39
  Everyone interacting in the Unleashed project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/nnhansg/unleashed-ruby/blob/master/CODE_OF_CONDUCT.md).
@@ -1,3 +1,9 @@
1
1
  module Unleashed
2
- VERSION = '0.1.1'.freeze
2
+ module Version
3
+ MAJOR = 0
4
+ MINOR = 1
5
+ TINY = 3
6
+
7
+ STRING = "#{MAJOR}.#{MINOR}.#{TINY}".freeze
8
+ end
3
9
  end
data/unleashed.gemspec CHANGED
@@ -4,7 +4,7 @@ require 'unleashed/version'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'unleashed'
7
- spec.version = Unleashed::VERSION
7
+ spec.version = Unleashed::Version::STRING
8
8
  spec.authors = ['Nhan Nguyen']
9
9
  spec.email = ['nnhansg@gmail.com']
10
10
 
@@ -21,12 +21,13 @@ Gem::Specification.new do |spec|
21
21
  # raise 'RubyGems 2.0 or newer is required to protect against ' \
22
22
  # 'public gem pushes.'
23
23
  # end
24
+
24
25
  spec.metadata['homepage_uri'] = spec.homepage
25
26
  spec.metadata['source_code_uri'] = 'https://github.com/nnhansg/unleashed-ruby/src/master/'
26
27
  spec.metadata['changelog_uri'] = 'https://github.com/nnhansg/unleashed-ruby/src/master/CHANGELOG.md'
28
+ spec.metadata['bug_tracker_uri'] = 'https://github.com/nnhansg/unleashed-ruby/issues'
27
29
 
28
30
  spec.required_ruby_version = '>= 2.5.0'
29
- spec.requirements << 'rails >= 5.1.6'
30
31
  spec.requirements << 'ruby >= 2.5.0'
31
32
 
32
33
  # Specify which files should be added to the gem when it is released.
@@ -40,7 +41,6 @@ Gem::Specification.new do |spec|
40
41
  spec.require_paths = ['lib']
41
42
 
42
43
  spec.add_development_dependency 'bundler', '~> 1.16', '>= 1.16.1'
43
- spec.add_development_dependency 'rails', '5.1.6'
44
44
  spec.add_development_dependency 'rake', '~> 10.0'
45
45
  spec.add_development_dependency 'rspec', '~> 3.0'
46
46
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unleashed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nhan Nguyen
@@ -30,20 +30,6 @@ dependencies:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.16.1
33
- - !ruby/object:Gem::Dependency
34
- name: rails
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - '='
38
- - !ruby/object:Gem::Version
39
- version: 5.1.6
40
- type: :development
41
- prerelease: false
42
- version_requirements: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - '='
45
- - !ruby/object:Gem::Version
46
- version: 5.1.6
47
33
  - !ruby/object:Gem::Dependency
48
34
  name: rake
49
35
  requirement: !ruby/object:Gem::Requirement
@@ -101,6 +87,7 @@ metadata:
101
87
  homepage_uri: https://github.com/nnhansg/unleashed-ruby
102
88
  source_code_uri: https://github.com/nnhansg/unleashed-ruby/src/master/
103
89
  changelog_uri: https://github.com/nnhansg/unleashed-ruby/src/master/CHANGELOG.md
90
+ bug_tracker_uri: https://github.com/nnhansg/unleashed-ruby/issues
104
91
  post_install_message:
105
92
  rdoc_options: []
106
93
  require_paths:
@@ -116,7 +103,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
103
  - !ruby/object:Gem::Version
117
104
  version: '0'
118
105
  requirements:
119
- - rails >= 5.1.6
120
106
  - ruby >= 2.5.0
121
107
  rubyforge_project:
122
108
  rubygems_version: 2.7.3