someapi-wrapper 0.1.0 → 0.1.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 +4 -4
- data/.gem/credentials +2 -0
- data/.gem/specs/api.rubygems.org%443/latest_specs.4.8 +0 -0
- data/.gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rubygems-update-3.2.25.gemspec +0 -0
- data/README.md +3 -9
- data/lib/someapi/wrapper/version.rb +1 -1
- data/someapi-wrapper.gemspec +5 -5
- metadata +49 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82b284251f4e085aa6f634d3f66a5d7b9ee52874
|
4
|
+
data.tar.gz: 42eec455312edc317cc534a75297678d15c3a42d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d38f3637e0ed9fdeecb0a8b812d7253c7b0048518b2585c7855f777ca4401f5b8f0fcaf14594311ef72523b88dbfd7e2a48801e25e2e920bccea40a586fe56c1
|
7
|
+
data.tar.gz: 7eca2543191c3f2a3bc6d61d21bdc02510b355b837eb721276a2bb0e210c5982c9fae94018d3b1fa89f511c80b871731f8903ddd03ecb0b3a0823ffb518683e7
|
data/.gem/credentials
ADDED
Binary file
|
Binary file
|
data/README.md
CHANGED
@@ -1,13 +1,7 @@
|
|
1
1
|
# Someapi::Wrapper
|
2
2
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/someapi/wrapper`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
|
-
|
7
3
|
## Installation
|
8
4
|
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
5
|
```ruby
|
12
6
|
gem 'someapi-wrapper'
|
13
7
|
```
|
@@ -22,7 +16,7 @@ Or install it yourself as:
|
|
22
16
|
|
23
17
|
## Usage
|
24
18
|
|
25
|
-
|
19
|
+
Soon
|
26
20
|
|
27
21
|
## Development
|
28
22
|
|
@@ -32,7 +26,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
26
|
|
33
27
|
## Contributing
|
34
28
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/justfaisa/someapi-wrapper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/justfaisa/someapi-wrapper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/justfaisa/someapi-wrapper/blob/master/CODE_OF_CONDUCT.md).
|
36
30
|
|
37
31
|
## License
|
38
32
|
|
@@ -40,4 +34,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
40
34
|
|
41
35
|
## Code of Conduct
|
42
36
|
|
43
|
-
Everyone interacting in the
|
37
|
+
Everyone interacting in the someapi-wrapper project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/justfaisa/someapi-wrapper/blob/master/CODE_OF_CONDUCT.md).
|
data/someapi-wrapper.gemspec
CHANGED
@@ -1,10 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative "lib/someapi/wrapper/version"
|
4
|
-
|
5
3
|
Gem::Specification.new do |spec|
|
6
4
|
spec.name = "someapi-wrapper"
|
7
|
-
spec.version =
|
5
|
+
spec.version = "0.1.1"
|
8
6
|
spec.authors = ["FaisaDev"]
|
9
7
|
spec.email = ["faiisan645@gmail.com"]
|
10
8
|
|
@@ -18,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
18
16
|
|
19
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
20
18
|
spec.metadata["source_code_uri"] = "https://github.com/justfaisa/someapi-wrapper"
|
21
|
-
spec.metadata["changelog_uri"] = "
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/justfaisa/someapi-wrapper/blob/main/CHANGELOG.md"
|
22
20
|
|
23
21
|
# Specify which files should be added to the gem when it is released.
|
24
22
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
@@ -30,7 +28,9 @@ Gem::Specification.new do |spec|
|
|
30
28
|
spec.require_paths = ["lib"]
|
31
29
|
|
32
30
|
# Uncomment to register a new dependency of your gem
|
33
|
-
|
31
|
+
spec.add_dependency "rake", "~> 13.0"
|
32
|
+
spec.add_dependency "rubocop", "~> 0.81.0"
|
33
|
+
spec.add_dependency "faraday", "~> 1.7"
|
34
34
|
|
35
35
|
# For more information and examples about making a new gem, checkout our
|
36
36
|
# guide at: https://bundler.io/guides/creating_gem.html
|
metadata
CHANGED
@@ -1,15 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: someapi-wrapper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- FaisaDev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
12
|
-
dependencies:
|
11
|
+
date: 2021-08-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '13.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '13.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rubocop
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.81.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.81.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: faraday
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.7'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.7'
|
13
55
|
description: An api wrapper for someapi
|
14
56
|
email:
|
15
57
|
- faiisan645@gmail.com
|
@@ -17,11 +59,14 @@ executables: []
|
|
17
59
|
extensions: []
|
18
60
|
extra_rdoc_files: []
|
19
61
|
files:
|
62
|
+
- ".gem/credentials"
|
63
|
+
- ".gem/specs/api.rubygems.org%443/latest_specs.4.8"
|
20
64
|
- ".gem/specs/api.rubygems.org%443/quick/Marshal.4.8/activesupport-4.2.1.gemspec"
|
21
65
|
- ".gem/specs/api.rubygems.org%443/quick/Marshal.4.8/bundler-2.2.25.gemspec"
|
22
66
|
- ".gem/specs/api.rubygems.org%443/quick/Marshal.4.8/gemspec-0.3.1.gemspec"
|
23
67
|
- ".gem/specs/api.rubygems.org%443/quick/Marshal.4.8/i18n-0.9.5.gemspec"
|
24
68
|
- ".gem/specs/api.rubygems.org%443/quick/Marshal.4.8/memoist-0.12.0.gemspec"
|
69
|
+
- ".gem/specs/api.rubygems.org%443/quick/Marshal.4.8/rubygems-update-3.2.25.gemspec"
|
25
70
|
- ".gitignore"
|
26
71
|
- ".glitch-assets"
|
27
72
|
- ".rubocop.yml "
|
@@ -48,7 +93,7 @@ metadata:
|
|
48
93
|
allowed_push_host: https://rubygems.org
|
49
94
|
homepage_uri: https://github.com/justfaisa/someapi-wrapper
|
50
95
|
source_code_uri: https://github.com/justfaisa/someapi-wrapper
|
51
|
-
changelog_uri:
|
96
|
+
changelog_uri: https://github.com/justfaisa/someapi-wrapper/blob/main/CHANGELOG.md
|
52
97
|
post_install_message:
|
53
98
|
rdoc_options: []
|
54
99
|
require_paths:
|