goinstant-auth 1.0.0 → 1.0.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/README.md +19 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 617c71c33259345612a71dd497fcb160189ba00c
|
|
4
|
+
data.tar.gz: 04944d831e33e37294df27766e00e21b20a3aed7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 933d812f90c908e28ae0322b9af84683fb362626a3c5f7a1410479b0da6beec47c8ffb06f38ed92bca5a2c8d8dc0ad369a1445246d84885a578450bbdda6c2bc
|
|
7
|
+
data.tar.gz: caa639cf1fb5cfbbc9bef9fcd6f64f793bf811f6e9b2a92142950c4b63034b2a61e4a517ed75bf18a4fc1269a0d60d093ce40170f62e54318901cc82b5dad242
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
GoInstant Authentication for Your Ruby Application
|
|
4
4
|
|
|
5
|
-
[](https://travis-ci.org/goinstant/ruby-goinstant-auth)
|
|
6
6
|
|
|
7
7
|
This is an implementation of JWT tokens consistent with what's specified in the
|
|
8
8
|
[GoInstant Users and Authentication
|
|
@@ -129,6 +129,9 @@ be overridden by this library.
|
|
|
129
129
|
|
|
130
130
|
# Contributing
|
|
131
131
|
|
|
132
|
+
If you'd like to contribute to or modify ruby-goinstant-auth, here's a quick
|
|
133
|
+
guide to get you started.
|
|
134
|
+
|
|
132
135
|
## Development Dependencies
|
|
133
136
|
|
|
134
137
|
Base dependencies are as follows.
|
|
@@ -159,6 +162,8 @@ bundle install
|
|
|
159
162
|
|
|
160
163
|
Testing is done with RSpec. Tests are located in the `spec/` folder.
|
|
161
164
|
|
|
165
|
+
To run the tests:
|
|
166
|
+
|
|
162
167
|
```sh
|
|
163
168
|
rake # 'test' is the default
|
|
164
169
|
```
|
|
@@ -173,6 +178,19 @@ rake doc
|
|
|
173
178
|
open doc/frames.html
|
|
174
179
|
```
|
|
175
180
|
|
|
181
|
+
## Publishing
|
|
182
|
+
|
|
183
|
+
When publishing `$VERSION` to master.
|
|
184
|
+
|
|
185
|
+
1. Edit `goinstant-auth.gemspec` and bump the version number
|
|
186
|
+
2. `git add *.gemspec && git commit -m '$VERSION'`
|
|
187
|
+
3. `git tag $VERSION`
|
|
188
|
+
4. `git push --tags origin master`
|
|
189
|
+
5. `rake gem`
|
|
190
|
+
6. `gem push goinstant-auth-$VERSION.gem` - note that there may be other .gem files hanging around so don't be lazy and specify `*.gem`
|
|
191
|
+
|
|
192
|
+
Check on https://rubygems.org/gems/goinstant-auth to see that it published.
|
|
193
|
+
|
|
176
194
|
# Support
|
|
177
195
|
|
|
178
196
|
Email [GoInstant Support](mailto:support@goinstant.com) or stop by [#goinstant
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: goinstant-auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GoInstant Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-11-
|
|
11
|
+
date: 2013-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Lets your users log-in to your GoInstant app
|
|
14
14
|
email: support@goinstant.org
|