minimalist_authentication 0.6.5 → 0.6.6
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.
- data/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/MIT-LICENSE +1 -1
- data/lib/minimalist/version.rb +1 -1
- data/minimalist_authentication.gemspec +19 -18
- metadata +4 -3
data/Gemfile
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
source '
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
2
|
gemspec
|
data/Gemfile.lock
CHANGED
data/MIT-LICENSE
CHANGED
data/lib/minimalist/version.rb
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
require File.expand_path('../lib/minimalist/version', __FILE__)
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
|
-
s.name
|
|
5
|
-
s.version
|
|
6
|
-
s.platform
|
|
7
|
-
s.authors
|
|
8
|
-
s.email
|
|
9
|
-
s.homepage
|
|
10
|
-
s.summary
|
|
11
|
-
s.description
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
s.
|
|
16
|
-
s.add_development_dependency('sqlite3')
|
|
17
|
-
s.add_development_dependency('factory_girl')
|
|
18
|
-
|
|
19
|
-
s.files = `git ls-files`.split("\n")
|
|
20
|
-
s.test_files = `git ls-files -- test/*`.split("\n")
|
|
4
|
+
s.name = "minimalist_authentication"
|
|
5
|
+
s.version = MinimalistAuthentication::VERSION
|
|
6
|
+
s.platform = Gem::Platform::RUBY
|
|
7
|
+
s.authors = ['Aaron Baldwin', 'Jonathan S. Garvin', 'WWIDEA, Inc']
|
|
8
|
+
s.email = ["developers@wwidea.org"]
|
|
9
|
+
s.homepage = "https://github.com/wwidea/minimalist_authentication"
|
|
10
|
+
s.summary = %q{A Rails authentication plugin that takes a minimalist approach.}
|
|
11
|
+
s.description = %q{A Rails authentication plugin that takes a minimalist approach. It is designed to be simple to understand, use, and modify for your application.}
|
|
12
|
+
s.license = 'MIT'
|
|
13
|
+
|
|
14
|
+
s.files = `git ls-files`.split("\n")
|
|
15
|
+
s.test_files = `git ls-files -- test/*`.split("\n")
|
|
21
16
|
s.require_paths = ["lib"]
|
|
22
|
-
|
|
17
|
+
|
|
18
|
+
s.add_dependency 'bcrypt-ruby', '~> 3.1.1'
|
|
19
|
+
|
|
20
|
+
s.add_development_dependency 'rails','3.0.5'
|
|
21
|
+
s.add_development_dependency 'sqlite3'
|
|
22
|
+
s.add_development_dependency 'factory_girl'
|
|
23
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minimalist_authentication
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2013-07-
|
|
14
|
+
date: 2013-07-11 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: bcrypt-ruby
|
|
@@ -141,7 +141,8 @@ files:
|
|
|
141
141
|
- test/sessions_test.rb
|
|
142
142
|
- test/test_helper.rb
|
|
143
143
|
homepage: https://github.com/wwidea/minimalist_authentication
|
|
144
|
-
licenses:
|
|
144
|
+
licenses:
|
|
145
|
+
- MIT
|
|
145
146
|
post_install_message:
|
|
146
147
|
rdoc_options: []
|
|
147
148
|
require_paths:
|