vauth-rails 0.1.0.alpha1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4bb9e33e64544948940492be87949c87693703f3c62e1a7d59ca8a53186ca3f3
4
+ data.tar.gz: b626df322dc47da900f9d13c6c3c5e662fef03caf6f44f6d9bce5cd91b301baa
5
+ SHA512:
6
+ metadata.gz: a836cada937328ba6c4309ad12673cb10416565605646c80ffd417575c8674e2bc1a5c3ead7b094a9b5f07788f2f4fec69c777de4f9af5c75aebe28d60f502f1
7
+ data.tar.gz: 52f7434e3cf9ec31e2c11ce3185c7b686eb5dd183f433bb3460aa64e659fb516f0a98896d7b5b2c3d1672ca7c9176664b5462056f17d1ee219ac86c9b71d1db5
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright Nipun Paradkar
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Vauth::Rails
2
+
3
+ > ![WARNING]
4
+ > Do not use this in production! This is a placeholder repo for reserving the name on RubyGems. No functionality is
5
+ > implemented yet.
6
+
7
+ ## Usage
8
+ How to use my plugin.
9
+
10
+ ## Installation
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem "vauth-rails"
15
+ ```
16
+
17
+ And then execute:
18
+ ```bash
19
+ $ bundle
20
+ ```
21
+
22
+ Or install it yourself as:
23
+ ```bash
24
+ $ gem install vauth-rails
25
+ ```
26
+
27
+ ## Contributing
28
+ Contribution directions go here.
29
+
30
+ ## License
31
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/setup"
2
+
3
+ require "bundler/gem_tasks"
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :vauth_rails do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,6 @@
1
+ module Vauth
2
+ module Rails
3
+ class Railtie < ::Rails::Railtie
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Vauth
2
+ module Rails
3
+ VERSION = "0.1.0.alpha1"
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ require "vauth/rails/version"
2
+ require "vauth/rails/railtie"
3
+
4
+ module Vauth
5
+ module Rails
6
+ # Your code goes here...
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vauth-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.alpha1
5
+ platform: ruby
6
+ authors:
7
+ - Nipun Paradkar
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rails
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: 8.0.2
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: 8.0.2
26
+ description: Integrates Vauth with Rails and makes OAuth 2.0 a breeze.
27
+ email:
28
+ - nipunparadkar123@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - MIT-LICENSE
34
+ - README.md
35
+ - Rakefile
36
+ - lib/tasks/vauth/rails_tasks.rake
37
+ - lib/vauth/rails.rb
38
+ - lib/vauth/rails/railtie.rb
39
+ - lib/vauth/rails/version.rb
40
+ homepage: https://github.com/radiantshaw/vauth-rails
41
+ licenses:
42
+ - MIT
43
+ metadata:
44
+ homepage_uri: https://github.com/radiantshaw/vauth-rails
45
+ source_code_uri: https://github.com/radiantshaw/vauth-rails
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubygems_version: 3.6.7
61
+ specification_version: 4
62
+ summary: Vauth integration with Rails.
63
+ test_files: []