tip-toe 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.
- data/README.md +12 -6
- data/lib/tip-toe/version.rb +2 -4
- data/tip-toe.gemspec +4 -2
- metadata +2 -2
data/README.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
-
|
1
|
+
tip-toe
|
2
|
+
=======
|
2
3
|
|
3
|
-
|
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
|
-
|
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
|
-
|
24
|
+
Wherever you want people to register or login simply attach
|
18
25
|
|
19
|
-
|
26
|
+
<%= render 'tip-toe' %>
|
20
27
|
|
21
|
-
TODO: Write usage instructions here
|
22
28
|
|
23
29
|
## Contributing
|
24
30
|
|
data/lib/tip-toe/version.rb
CHANGED
data/tip-toe.gemspec
CHANGED
@@ -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 =
|
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.
|
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: []
|