devise_jwt_mehak 0.9.0
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 +7 -0
- data/Gemfile +59 -0
- data/LICENSE +1 -0
- data/README.md +24 -0
- data/devise_jwt.gemspec +18 -0
- metadata +46 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 80baa414e495af505c5fed0ae125a59b949a00c202aaf79b96559f149097416a
|
|
4
|
+
data.tar.gz: 75559866837d8a3ef2dde0ca0b9ee50086b60b688936f031e5cf08f6f224adde
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 752e1d6bd18c4e53d6dd73af407e70973e811e904c476b85ed3a0685170aa62501542993bb03a3e36dfa88c31671179499f73d7058665ba790684ce089b623cb
|
|
7
|
+
data.tar.gz: 7cbfd2e407b21a5e8a3b7fd4c23b61abca9565a4bd2d50c07ea795823dfa85388fc530f0bb2906ef1ab2d5de78a60edaef2b0952bc451270c46f8b05c1f478d0
|
data/Gemfile
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
3
|
+
|
|
4
|
+
ruby '2.6.5'
|
|
5
|
+
|
|
6
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
7
|
+
gem 'rails', '~> 6.1.0'
|
|
8
|
+
# Use sqlite3 as the database for Active Record
|
|
9
|
+
gem 'sqlite3', '~> 1.4'
|
|
10
|
+
# Use Puma as the app server
|
|
11
|
+
gem 'puma', '~> 5.0'
|
|
12
|
+
# Use SCSS for stylesheets
|
|
13
|
+
gem 'sass-rails', '>= 6'
|
|
14
|
+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
|
15
|
+
gem 'webpacker', '~> 5.0'
|
|
16
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
|
17
|
+
gem 'turbolinks', '~> 5'
|
|
18
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
19
|
+
gem 'jbuilder', '~> 2.7'
|
|
20
|
+
# Use Redis adapter to run Action Cable in production
|
|
21
|
+
# gem 'redis', '~> 4.0'
|
|
22
|
+
# Use Active Model has_secure_password
|
|
23
|
+
# gem 'bcrypt', '~> 3.1.7'
|
|
24
|
+
|
|
25
|
+
# Use Active Storage variant
|
|
26
|
+
# gem 'image_processing', '~> 1.2'
|
|
27
|
+
|
|
28
|
+
# Reduces boot times through caching; required in config/boot.rb
|
|
29
|
+
gem 'bootsnap', '>= 1.4.4', require: false
|
|
30
|
+
|
|
31
|
+
gem 'devise-jwt'
|
|
32
|
+
gem 'pg'
|
|
33
|
+
|
|
34
|
+
group :development, :test do
|
|
35
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
36
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
group :development do
|
|
40
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
|
41
|
+
gem 'web-console', '>= 4.1.0'
|
|
42
|
+
# Display performance information such as SQL time and flame graphs for each request in your browser.
|
|
43
|
+
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
|
|
44
|
+
gem 'rack-mini-profiler', '~> 2.0'
|
|
45
|
+
gem 'listen', '~> 3.3'
|
|
46
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
47
|
+
gem 'spring'
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
group :test do
|
|
51
|
+
# Adds support for Capybara system testing and selenium driver
|
|
52
|
+
gem 'capybara', '>= 3.26'
|
|
53
|
+
gem 'selenium-webdriver'
|
|
54
|
+
# Easy installation and use of web drivers to run system tests with browsers
|
|
55
|
+
gem 'webdrivers'
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
59
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
data/LICENSE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MIT LICENSE
|
data/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# README
|
|
2
|
+
|
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
|
4
|
+
application up and running.
|
|
5
|
+
|
|
6
|
+
Things you may want to cover:
|
|
7
|
+
|
|
8
|
+
* Ruby version
|
|
9
|
+
|
|
10
|
+
* System dependencies
|
|
11
|
+
|
|
12
|
+
* Configuration
|
|
13
|
+
|
|
14
|
+
* Database creation
|
|
15
|
+
|
|
16
|
+
* Database initialization
|
|
17
|
+
|
|
18
|
+
* How to run the test suite
|
|
19
|
+
|
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
|
21
|
+
|
|
22
|
+
* Deployment instructions
|
|
23
|
+
|
|
24
|
+
* ...
|
data/devise_jwt.gemspec
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require File.expand_path('lib/devise_jwt/version',__dir__)
|
|
2
|
+
Gem::Specification.new do |s|
|
|
3
|
+
s.name = 'devise_jwt_mehak'
|
|
4
|
+
s.version = DeviseJwt::VERSION
|
|
5
|
+
s.summary = "Test Gem by Mehak"
|
|
6
|
+
s.description = "Test gem"
|
|
7
|
+
s.authors = ["Mehak Singla"]
|
|
8
|
+
s.email = 'mehaksingla1897@gmail.com'
|
|
9
|
+
s.files = ["lib/devise_jwt.rb"]
|
|
10
|
+
s.homepage = 'https://github.com/mehaksingla1897/starlance-docker'
|
|
11
|
+
s.license = 'MIT'
|
|
12
|
+
s.platform = Gem::Platform::RUBY
|
|
13
|
+
|
|
14
|
+
s.files = Dir['README.md', 'LICENSE', 'devise_jwt.gemspec', 'Gemfile']
|
|
15
|
+
|
|
16
|
+
# s.add_dependency 'test', ~> '2.1' #install during runtime
|
|
17
|
+
# s.add_development_dependency 'rspec', ~> '1.6'
|
|
18
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: devise_jwt_mehak
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.9.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Mehak Singla
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2021-12-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Test gem
|
|
14
|
+
email: mehaksingla1897@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- Gemfile
|
|
20
|
+
- LICENSE
|
|
21
|
+
- README.md
|
|
22
|
+
- devise_jwt.gemspec
|
|
23
|
+
homepage: https://github.com/mehaksingla1897/starlance-docker
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata: {}
|
|
27
|
+
post_install_message:
|
|
28
|
+
rdoc_options: []
|
|
29
|
+
require_paths:
|
|
30
|
+
- lib
|
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '0'
|
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
requirements: []
|
|
42
|
+
rubygems_version: 3.0.8
|
|
43
|
+
signing_key:
|
|
44
|
+
specification_version: 4
|
|
45
|
+
summary: Test Gem by Mehak
|
|
46
|
+
test_files: []
|