masterview_generator 0.0.4 → 0.0.5
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 +2 -2
- data/Rakefile +2 -2
- metadata +2 -2
data/README
CHANGED
@@ -47,7 +47,7 @@ gem install masterview
|
|
47
47
|
|
48
48
|
Now your gem is installed and you can skip that step in the future. After creating your rails directory, change directory to it and run the following to create a very lightweight plugin instance for this application mainly consisting of an init.rb file which will get loaded at runtime. This init.rb refers to the gem for everything but allows you to override any constants or setup that has been provided. See MasterView module masterview.rb for a list of the available constants.
|
49
49
|
|
50
|
-
script/generate
|
50
|
+
script/generate masterview_plugin
|
51
51
|
|
52
52
|
After this MasterView is ready for use. Skip down to the Usage section for more details.
|
53
53
|
|
@@ -55,7 +55,7 @@ After this MasterView is ready for use. Skip down to the Usage section for more
|
|
55
55
|
|
56
56
|
script/plugin install masterview
|
57
57
|
|
58
|
-
This will copy entire MasterView system into your vendor/plugin/masterview directory. You may tweak its init.rb to override any MasterView constants at runtime. See MasterView module masterview.rb for a list of available constants.
|
58
|
+
This will copy entire MasterView system into your vendor/plugin/masterview directory. You may tweak its init.rb to override any MasterView constants at runtime. See MasterView module masterview.rb for a list of available constants. You may also retrieve the plugin package (.tgz and .zip) from Rubyforge.org searching for the project masterview_complete.
|
59
59
|
|
60
60
|
== Usage
|
61
61
|
|
data/Rakefile
CHANGED
@@ -285,7 +285,7 @@ namespace 'masterview_generator' do
|
|
285
285
|
s.has_rdoc = false
|
286
286
|
s.files = PKG_FILES
|
287
287
|
s.require_path = 'generators/masterview'
|
288
|
-
|
288
|
+
s.autorequire = 'masterview_generator'
|
289
289
|
s.add_dependency 'masterview_parser'
|
290
290
|
s.author = "Jeff Barczewski"
|
291
291
|
s.email = "jeff.barczewski@gmail.com"
|
@@ -335,7 +335,7 @@ namespace 'masterview_plugin_generator' do
|
|
335
335
|
s.has_rdoc = false
|
336
336
|
s.files = PKG_FILES
|
337
337
|
s.require_path = 'generators/masterview_plugin'
|
338
|
-
|
338
|
+
s.autorequire = 'masterview_plugin_generator'
|
339
339
|
s.add_dependency 'masterview_parser'
|
340
340
|
s.author = "Jeff Barczewski"
|
341
341
|
s.email = "jeff.barczewski@gmail.com"
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: masterview_generator
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
6
|
+
version: 0.0.5
|
7
7
|
date: 2006-04-18 00:00:00 -05:00
|
8
8
|
summary: A (x)html friendly template engine for rails with the power of layouts, and partials. MasterView Generator for GEM
|
9
9
|
require_paths:
|
@@ -12,7 +12,7 @@ email: jeff.barczewski@gmail.com
|
|
12
12
|
homepage: http://masterview.org/
|
13
13
|
rubyforge_project:
|
14
14
|
description:
|
15
|
-
autorequire:
|
15
|
+
autorequire: masterview_generator
|
16
16
|
default_executable:
|
17
17
|
bindir: bin
|
18
18
|
has_rdoc: false
|