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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b98af57b80db1d208e37fea555f8840b0ef28d975b450e3d4913e5b43b90e49c
4
- data.tar.gz: 37ab658dbc48fcaf0dc6fa332f64f85a5a16a654a1b603855df72d4d00d049f1
3
+ metadata.gz: 57a697d2434cc762c196c4840cde5eccc7fbc19963b5a62308acb8bc00a6471e
4
+ data.tar.gz: 5d9e68e19bfe23447772da6292f1974bec10ad30a85b65d382b0579b200bcc56
5
5
  SHA512:
6
- metadata.gz: 325cb78e50548492bf4537a0b89b59e2c8bf9541481b9fc75dad97174251b0e2a7697ef5b8183dc67461375614a8fe22f576a8262df63db63116c0a65be04a54
7
- data.tar.gz: 32143ac809d4b48c0b0afdd0274c04061f4fd0b094c8e35179d59515a0aecbfa5eabd0bb4a0fbf259f95d3e75387bb789741ffd8cd809de412ada9b8fa78db27
6
+ metadata.gz: e67834856aef77aced8c7ec5dc1063208207d707fab012be523d9f0a91b9bd629fec86c8dfcab94b754ca584b4393ec21ee2f5fb8c4b41248b1acb151d2a6292
7
+ data.tar.gz: 61118e1d8ef1f8434e1deffa692c8b996ce7f0e2618ff09862b3157a96d398fb1dd6c3d989f9b28cda1221846ffe71beb0e312cde4cc4b7f1e7d79686d8ca8f4
data/CHANGELOG.md CHANGED
@@ -3,3 +3,12 @@
3
3
  ## [0.1.0] - 2021-08-26
4
4
 
5
5
  - Initial release
6
+
7
+
8
+ ## [0.1.1] - 2022-02-13
9
+
10
+ - Clean up and refactor
11
+
12
+ ## 0.1.2 - 2022-02-13
13
+
14
+ - Update gemspec description
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 = 'Write a short summary, because RubyGems requires one.'
12
- spec.description = 'Write a longer description or delete this line.'
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'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JwtApi
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
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.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: Write a longer description or delete this line.
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.3
88
+ rubygems_version: 3.3.7
88
89
  signing_key:
89
90
  specification_version: 4
90
- summary: Write a short summary, because RubyGems requires one.
91
+ summary: Scaffold a JSON Web Token API
91
92
  test_files: []