mack 0.5.5 → 0.5.5.1
Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
===0.5.5.1
|
2
|
+
* Generated applications were still being generated with @content_for_layout instead of yield_to :view in application.html.erb.
|
3
|
+
|
1
4
|
===0.5.5
|
2
5
|
* INCOMPATIBILITY NOTICE: Ripped apart the ENTIRE rendering engine and rewrote it from the ground up. This means that wherever you are using 'render' calls in your views and controllers need to be changed. The new format is render(type, value, options). Examples: render(:action, :show), render(:url, "http://www.mackframework.com"), etc...
|
3
6
|
* INCOMPATIBILITY NOTICE: Files named *.xml.erb need to be changed to *.xml.builder to use the Builder::XmlMarkup library. If you leave the .erb extension on there the file will be run through Erubis.
|
@@ -16,6 +19,7 @@
|
|
16
19
|
* gem: genosaurus 1.1.8
|
17
20
|
* gem: mack_ruby_core_extensions 0.1.28
|
18
21
|
* gem: markaby 0.5.0
|
22
|
+
* gem: mack-data_mapper 0.5.5
|
19
23
|
|
20
24
|
===0.5.0
|
21
25
|
* Added rake db:create and db:create:all rake tasks.
|
data/bin/mack
CHANGED
@@ -13,7 +13,7 @@ raise "You must specify a name for this application!" if app.nil?
|
|
13
13
|
|
14
14
|
options = OpenStruct.new
|
15
15
|
options.orm = "data_mapper"
|
16
|
-
options.version = "0.5.5"
|
16
|
+
options.version = "0.5.5.1"
|
17
17
|
|
18
18
|
opts = OptionParser.new do |opts|
|
19
19
|
opts.banner = "Usage: mack <application_name> [options]"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.5
|
4
|
+
version: 0.5.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- markbates
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-05-
|
12
|
+
date: 2008-05-24 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -176,6 +176,7 @@ files:
|
|
176
176
|
- lib/generators/mack_application_generator/manifest.yml
|
177
177
|
- lib/generators/mack_application_generator/templates/app/controllers/default_controller.rb.template
|
178
178
|
- lib/generators/mack_application_generator/templates/app/helpers/application_helper.rb.template
|
179
|
+
- lib/generators/mack_application_generator/templates/app/models.template
|
179
180
|
- lib/generators/mack_application_generator/templates/app/views/default/index.html.erb.template
|
180
181
|
- lib/generators/mack_application_generator/templates/app/views/layouts/application.html.erb.template
|
181
182
|
- lib/generators/mack_application_generator/templates/config/app_config/default.yml.template
|
@@ -199,6 +200,7 @@ files:
|
|
199
200
|
- lib/generators/plugin_generator/templates/vendor/plugins/%=@plugin_name%/init.rb.template
|
200
201
|
- lib/generators/plugin_generator/templates/vendor/plugins/%=@plugin_name%/lib/%=@plugin_name%.rb.template
|
201
202
|
- lib/generators/plugin_generator/templates/vendor/plugins/%=@plugin_name%/lib/tasks/%=@plugin_name%_tasks.rake.template
|
203
|
+
- lib/generators/plugin_generator/templates/vendor/plugins/%=@plugin_name%/lib/tasks.template
|
202
204
|
- lib/initialization/configuration.rb
|
203
205
|
- lib/initialization/console.rb
|
204
206
|
- lib/initialization/logging.rb
|