jwt_api 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 +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +0 -8
- data/jwt_api-0.1.1.gem +0 -0
- data/jwt_api.gemspec +2 -2
- data/lib/jwt_api/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57a697d2434cc762c196c4840cde5eccc7fbc19963b5a62308acb8bc00a6471e
|
4
|
+
data.tar.gz: 5d9e68e19bfe23447772da6292f1974bec10ad30a85b65d382b0579b200bcc56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e67834856aef77aced8c7ec5dc1063208207d707fab012be523d9f0a91b9bd629fec86c8dfcab94b754ca584b4393ec21ee2f5fb8c4b41248b1acb151d2a6292
|
7
|
+
data.tar.gz: 61118e1d8ef1f8434e1deffa692c8b996ce7f0e2618ff09862b3157a96d398fb1dd6c3d989f9b28cda1221846ffe71beb0e312cde4cc4b7f1e7d79686d8ca8f4
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -67,11 +67,6 @@ Running via Spring preloader in process 56250
|
|
67
67
|
|
68
68
|
## Limitations
|
69
69
|
- Currently this will only work with a devise User model.
|
70
|
-
## Development
|
71
|
-
|
72
|
-
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.
|
73
|
-
|
74
|
-
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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
75
70
|
|
76
71
|
## Contributing
|
77
72
|
|
@@ -85,6 +80,3 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
85
80
|
|
86
81
|
Everyone interacting in the JwtApi project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/jwt_api/blob/main/CODE_OF_CONDUCT.md).
|
87
82
|
|
88
|
-
|
89
|
-
## TODO
|
90
|
-
- Create test suite and add to generator to copy into users app.
|
data/jwt_api-0.1.1.gem
ADDED
Binary file
|
data/jwt_api.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ['Leo Policastro']
|
9
9
|
spec.email = ['lpolicastro@pm.me']
|
10
10
|
|
11
|
-
spec.summary = '
|
12
|
-
spec.description = '
|
11
|
+
spec.summary = 'Scaffold a JSON Web Token API'
|
12
|
+
spec.description = 'Scaffold a JSON Web Token API'
|
13
13
|
spec.homepage = 'https://github.com/leopolicastro/jwt_api/'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
spec.required_ruby_version = '>= 2.4.0'
|
data/lib/jwt_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jwt_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leo Policastro
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.2.3
|
33
|
-
description:
|
33
|
+
description: Scaffold a JSON Web Token API
|
34
34
|
email:
|
35
35
|
- lpolicastro@pm.me
|
36
36
|
executables: []
|
@@ -49,6 +49,7 @@ files:
|
|
49
49
|
- bin/console
|
50
50
|
- bin/setup
|
51
51
|
- jwt_api-0.1.0.gem
|
52
|
+
- jwt_api-0.1.1.gem
|
52
53
|
- jwt_api.gemspec
|
53
54
|
- lib/generators/jwt_api/setup_generator.rb
|
54
55
|
- lib/generators/jwt_api/templates/api/base_controller.rb
|
@@ -84,8 +85,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
85
|
- !ruby/object:Gem::Version
|
85
86
|
version: '0'
|
86
87
|
requirements: []
|
87
|
-
rubygems_version: 3.3.
|
88
|
+
rubygems_version: 3.3.7
|
88
89
|
signing_key:
|
89
90
|
specification_version: 4
|
90
|
-
summary:
|
91
|
+
summary: Scaffold a JSON Web Token API
|
91
92
|
test_files: []
|