unleashed 0.1.1 → 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 +4 -4
- data/CODE_OF_CONDUCT.md +1 -1
- data/README.md +11 -13
- data/lib/unleashed/version.rb +7 -1
- data/unleashed.gemspec +3 -3
- metadata +2 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab9f52896f8b680ac28a67a8716d0e1bafb0213be69e5e3c4ff6ceb1f6898f0e
|
|
4
|
+
data.tar.gz: 9facbcd5c5592d277b3cb3220534a38629c7d109556c971fd48f129e73c05331
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
-
##
|
|
25
|
+
## 3. Contributing
|
|
26
26
|
|
|
27
|
-
|
|
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
|
-
|
|
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).
|
data/lib/unleashed/version.rb
CHANGED
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::
|
|
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.
|
|
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
|