fx-auth 0.1.0 → 0.1.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 +2 -2
- data/fx-auth.gemspec +2 -1
- data/lib/fx-auth/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a1f2f7c180fba26a558466d3920b0270dac77fa
|
|
4
|
+
data.tar.gz: 3def21a83354ae7679bd2568b8ab6e5bd6556be7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ced85a36c8c465bad3bbe6f1ebdea7e53b8008b70b4dd84061cd2f17992a4d4425b253bda0dca697bfc3c11bcf07aaa52a5adf63bf72b206e72f07d7e66fd825
|
|
7
|
+
data.tar.gz: d6ba848bec49716bd564f0689d824e0da22c465870fb622bdd69c894c234b007756ef02620a4ab7d69c0cbdd5db2e72595fa5541214170ef16f148ad4e7b8941
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AuthFx
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Ruby DataMapper Models for Authentication and Authorization
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -18,7 +18,7 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
For usage, see the [Sinatra::Fx::Auth gem](https://github.com/AnyWareFx/sinatra-fx-auth)
|
|
22
22
|
|
|
23
23
|
## Contributing
|
|
24
24
|
|
data/fx-auth.gemspec
CHANGED
|
@@ -9,12 +9,13 @@ require 'fx-auth/version'
|
|
|
9
9
|
Gem::Specification.new do |gem|
|
|
10
10
|
gem.name = 'fx-auth'
|
|
11
11
|
gem.version = AuthFx::VERSION
|
|
12
|
+
gem.license = 'MIT'
|
|
12
13
|
|
|
13
14
|
gem.authors = ['Dave Jackson']
|
|
14
15
|
gem.email = %w(dave.jackson@anywarefx.com)
|
|
15
16
|
gem.description = %q{AuthFx - DataMapper models for RESTful Authentication}
|
|
16
17
|
gem.summary = %q{AuthFx - DataMapper models for RESTful Authentication}
|
|
17
|
-
gem.homepage = ''
|
|
18
|
+
gem.homepage = 'https://github.com/AnyWareFx/fx-auth'
|
|
18
19
|
|
|
19
20
|
gem.files = `git ls-files`.split($/)
|
|
20
21
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/fx-auth/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fx-auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dave Jackson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-12-
|
|
11
|
+
date: 2014-12-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -130,8 +130,9 @@ files:
|
|
|
130
130
|
- lib/fx-auth/version.rb
|
|
131
131
|
- test/factories.rb
|
|
132
132
|
- test/seeds.rb
|
|
133
|
-
homepage:
|
|
134
|
-
licenses:
|
|
133
|
+
homepage: https://github.com/AnyWareFx/fx-auth
|
|
134
|
+
licenses:
|
|
135
|
+
- MIT
|
|
135
136
|
metadata: {}
|
|
136
137
|
post_install_message:
|
|
137
138
|
rdoc_options: []
|