simple_login 0.0.1 → 0.0.2
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.
- metadata +6 -10
- data/.gitignore +0 -17
- data/lib/simple_login/version.rb +0 -3
- data/lib/simple_login.rb +0 -5
- data/simple_login.gemspec +0 -17
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_login
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,22 +11,18 @@ bindir: bin
|
|
|
11
11
|
cert_chain: []
|
|
12
12
|
date: 2012-05-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
|
-
description:
|
|
15
|
-
|
|
14
|
+
description: simple_login creates a basic and simple login system for Rails 3 apps.
|
|
15
|
+
It is based on Railscasts Authentication from Scratch videos.
|
|
16
16
|
email:
|
|
17
17
|
- designium@gmail.com
|
|
18
18
|
executables: []
|
|
19
19
|
extensions: []
|
|
20
20
|
extra_rdoc_files: []
|
|
21
21
|
files:
|
|
22
|
-
- .gitignore
|
|
23
22
|
- Gemfile
|
|
24
23
|
- LICENSE
|
|
25
|
-
- README.md
|
|
26
24
|
- Rakefile
|
|
27
|
-
-
|
|
28
|
-
- lib/simple_login/version.rb
|
|
29
|
-
- simple_login.gemspec
|
|
25
|
+
- README.md
|
|
30
26
|
homepage: ''
|
|
31
27
|
licenses: []
|
|
32
28
|
post_install_message:
|
|
@@ -50,6 +46,6 @@ rubyforge_project:
|
|
|
50
46
|
rubygems_version: 1.8.11
|
|
51
47
|
signing_key:
|
|
52
48
|
specification_version: 3
|
|
53
|
-
summary:
|
|
54
|
-
|
|
49
|
+
summary: simple_login can be used easily by adding the gem into your Gemfile and type
|
|
50
|
+
the following command 'rails g simple_login'.
|
|
55
51
|
test_files: []
|
data/.gitignore
DELETED
data/lib/simple_login/version.rb
DELETED
data/lib/simple_login.rb
DELETED
data/simple_login.gemspec
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
|
2
|
-
require File.expand_path('../lib/simple_login/version', __FILE__)
|
|
3
|
-
|
|
4
|
-
Gem::Specification.new do |gem|
|
|
5
|
-
gem.authors = ["Chim Kan"]
|
|
6
|
-
gem.email = ["designium@gmail.com"]
|
|
7
|
-
gem.description = ["simple_login creates a basic and simple login system for Rails 3 apps. It is based on Railscasts Authentication from Scratch videos."]
|
|
8
|
-
gem.summary = ["simple_login can be used easily by adding the gem into your Gemfile and type the following command 'rails g simple_login'."]
|
|
9
|
-
gem.homepage = ""
|
|
10
|
-
|
|
11
|
-
gem.files = `git ls-files`.split($\)
|
|
12
|
-
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
13
|
-
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
14
|
-
gem.name = "simple_login"
|
|
15
|
-
gem.require_paths = ["lib"]
|
|
16
|
-
gem.version = SimpleLogin::VERSION
|
|
17
|
-
end
|