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 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.1
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: ! '["simple_login creates a basic and simple login system for Rails 3
15
- apps. It is based on Railscasts Authentication from Scratch videos."]'
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
- - lib/simple_login.rb
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: ! '["simple_login can be used easily by adding the gem into your Gemfile
54
- and type the following command ''rails g simple_login''."]'
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
@@ -1,17 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
@@ -1,3 +0,0 @@
1
- module SimpleLogin
2
- VERSION = "0.0.1"
3
- end
data/lib/simple_login.rb DELETED
@@ -1,5 +0,0 @@
1
- require "simple_login/version"
2
-
3
- module SimpleLogin
4
- # Your code goes here...
5
- end
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