tip-toe 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
- # Tip::Toe
1
+ tip-toe
2
+ =======
2
3
 
3
- TODO: Write a gem description
4
+ A Rails 3.2 Gem For Progressive Registration
5
+ ---------
6
+
7
+ Who needs password confirm? Or anything except email for that matter? Ask for everything after! This gem gives you a simple email, password, remember me, form with complete forget password? functionality.
4
8
 
5
9
  ## Installation
6
10
 
@@ -12,13 +16,15 @@ And then execute:
12
16
 
13
17
  $ bundle
14
18
 
15
- Or install it yourself as:
19
+ Then use the tip-toe generator to get a fully exposed sessions controller and <<ModelName>> controller and shared tip-toe paritals
20
+
21
+ $ rails generate tip-toe <<ModelName>>>
22
+
16
23
 
17
- $ gem install tip-toe
24
+ Wherever you want people to register or login simply attach
18
25
 
19
- ## Usage
26
+ <%= render 'tip-toe' %>
20
27
 
21
- TODO: Write usage instructions here
22
28
 
23
29
  ## Contributing
24
30
 
@@ -1,5 +1,3 @@
1
- module Tip
2
- module Toe
3
- VERSION = "0.0.1"
4
- end
1
+ module TipToe
2
+ VERSION = "0.0.2"
5
3
  end
@@ -5,12 +5,14 @@ require 'tip-toe/version'
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "tip-toe"
8
- gem.version = Tip::Toe::VERSION
8
+ gem.version = TipToe::VERSION
9
9
  gem.authors = ["ajbraus"]
10
10
  gem.email = ["ajbraus@gmail.com"]
11
11
  gem.description = %q{Progressive Registration Gem}
12
12
  gem.summary = %q{Who needs password confirm? Or anything except email for that matter? Ask for everything after! This gem gives you a simple email, password, remember me, form with complete forget password? functionality.}
13
- gem.homepage = ""
13
+ gem.homepage = "https://github.com/ajbraus/tip-toe"
14
+
15
+ # gem.add_development_dependency "rspec"
14
16
 
15
17
  gem.files = `git ls-files`.split($/)
16
18
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tip-toe
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:
@@ -26,7 +26,7 @@ files:
26
26
  - lib/tip-toe.rb
27
27
  - lib/tip-toe/version.rb
28
28
  - tip-toe.gemspec
29
- homepage: ''
29
+ homepage: https://github.com/ajbraus/tip-toe
30
30
  licenses: []
31
31
  post_install_message:
32
32
  rdoc_options: []