handy-generators 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.rdoc +12 -1
- data/VERSION +1 -1
- data/handy-generators.gemspec +2 -2
- metadata +4 -4
data/README.rdoc
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
= handy-generators
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
handy-generators consists of two generators:
|
|
4
|
+
* handy_setup: creates the initial structure of a rails project with users, authentication (with authlogic) and admin area (in a namespace/subdomain, with subdomain-fu).
|
|
5
|
+
* hscaffold: namespaced scaffold generator that works as expected. If you're using the namespace in a subdomain you'll have to update the routes file though.
|
|
6
|
+
|
|
7
|
+
== Installation
|
|
8
|
+
|
|
9
|
+
sudo gem install handy-generators
|
|
10
|
+
|
|
11
|
+
== Usage
|
|
12
|
+
|
|
13
|
+
script/generate handy_setup
|
|
14
|
+
script/generate hscaffold [namespace_name/]model_name ...
|
|
4
15
|
|
|
5
16
|
== Note on Patches/Pull Requests
|
|
6
17
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
data/handy-generators.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{handy-generators}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["jordinl"]
|
|
12
|
-
s.date = %q{2010-08-
|
|
12
|
+
s.date = %q{2010-08-15}
|
|
13
13
|
s.description = %q{Application and Scaffold generators. With admin in a subdomain (using subdomain-fu), authentication (using authlogic) and users}
|
|
14
14
|
s.email = %q{jordinoguera83@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: handy-generators
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- jordinl
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-08-
|
|
18
|
+
date: 2010-08-15 00:00:00 +01:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|