hobo 0.7.4 → 0.7.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/bin/hobo +0 -6
- data/hobo_files/plugin/CHANGES.txt +103 -0
- data/hobo_files/plugin/Rakefile +2 -0
- data/hobo_files/plugin/generators/hobo_rapid/hobo_rapid_generator.rb +1 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/IE7.js +2 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/hobo-rapid.js +28 -12
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/public/stylesheets/{application.css → clean.css} +10 -9
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/public/stylesheets/rapid-ui.css +1 -1
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/views/{application.dryml → clean.dryml} +0 -0
- data/hobo_files/plugin/init.rb +7 -3
- data/hobo_files/plugin/lib/hobo.rb +3 -1
- data/hobo_files/plugin/lib/hobo/bundle.rb +24 -14
- data/hobo_files/plugin/lib/hobo/dryml.rb +5 -1
- data/hobo_files/plugin/lib/hobo/dryml/dryml_builder.rb +1 -1
- data/hobo_files/plugin/lib/hobo/dryml/parser/base_parser.rb +11 -10
- data/hobo_files/plugin/lib/hobo/dryml/parser/document.rb +37 -10
- data/hobo_files/plugin/lib/hobo/dryml/template.rb +5 -22
- data/hobo_files/plugin/lib/hobo/dryml/template_environment.rb +1 -1
- data/hobo_files/plugin/lib/hobo/dryml/template_handler.rb +10 -2
- data/hobo_files/plugin/lib/hobo/hobo_helper.rb +7 -0
- data/hobo_files/plugin/lib/hobo/model.rb +18 -13
- data/hobo_files/plugin/lib/hobo/model_controller.rb +45 -54
- data/hobo_files/plugin/lib/hobo/model_router.rb +8 -1
- data/hobo_files/plugin/lib/hobo/scopes.rb +3 -4
- data/hobo_files/plugin/lib/hobo/scopes/automatic_scopes.rb +3 -0
- data/hobo_files/plugin/taglib-docs/core.markdown +165 -0
- data/hobo_files/plugin/taglib-docs/rapid.markdown +677 -0
- data/hobo_files/plugin/taglib-docs/rapid_document_tags.markdown +240 -0
- data/hobo_files/plugin/taglib-docs/rapid_editing.markdown +418 -0
- data/hobo_files/plugin/taglib-docs/rapid_forms.markdown +562 -0
- data/hobo_files/plugin/taglib-docs/rapid_generics.markdown +187 -0
- data/hobo_files/plugin/taglib-docs/rapid_navigation.markdown +214 -0
- data/hobo_files/plugin/taglib-docs/rapid_pages.markdown +530 -0
- data/hobo_files/plugin/taglib-docs/rapid_plus.markdown +65 -0
- data/hobo_files/plugin/taglib-docs/rapid_support.markdown +50 -0
- data/hobo_files/plugin/taglib-docs/rapid_user_pages.markdown +129 -0
- data/hobo_files/plugin/taglibs/rapid.dryml +2 -2
- data/hobo_files/plugin/taglibs/rapid_forms.dryml +7 -22
- data/hobo_files/plugin/taglibs/rapid_generics.dryml +14 -12
- data/hobo_files/plugin/taglibs/rapid_navigation.dryml +5 -4
- data/hobo_files/plugin/taglibs/rapid_pages.dryml +5 -1
- data/hobo_files/plugin/tasks/fix_dryml.rake +1 -1
- data/hobo_files/plugin/tasks/generate_tag_reference.rb +162 -0
- data/hobo_files/plugin/tasks/hobo_tasks.rake +17 -0
- metadata +46 -5
@@ -0,0 +1,17 @@
|
|
1
|
+
namespace :hobo do
|
2
|
+
|
3
|
+
desc "Replace commonly used hobo assets with symlinks into the plugin so that they stay up to date"
|
4
|
+
task :symlink_assets do
|
5
|
+
|
6
|
+
Dir.chdir(RAILS_ROOT) do
|
7
|
+
Dir.chdir("public/javascripts") do
|
8
|
+
puts "hobo-rapid.js"
|
9
|
+
`rm -f hobo-rapid.js`
|
10
|
+
`ln -s ../../vendor/plugins/hobo/generators/hobo_rapid/templates/hobo-rapid.js`
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hobo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Locke
|
@@ -9,9 +9,18 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-04-
|
12
|
+
date: 2008-04-18 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rails
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.0.2
|
23
|
+
version:
|
15
24
|
- !ruby/object:Gem::Dependency
|
16
25
|
name: hobosupport
|
17
26
|
version_requirement:
|
@@ -19,7 +28,25 @@ dependencies:
|
|
19
28
|
requirements:
|
20
29
|
- - ">="
|
21
30
|
- !ruby/object:Gem::Version
|
22
|
-
version: 0.7.
|
31
|
+
version: 0.7.5
|
32
|
+
version:
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: hobofields
|
35
|
+
version_requirement:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.7.5
|
41
|
+
version:
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: will_paginate
|
44
|
+
version_requirement:
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 2.2.1
|
23
50
|
version:
|
24
51
|
description:
|
25
52
|
email: tom@hobocentral.net
|
@@ -73,6 +100,7 @@ files:
|
|
73
100
|
- hobo_files/plugin/generators/hobo_rapid/templates
|
74
101
|
- hobo_files/plugin/generators/hobo_rapid/templates/hobo-rapid.css
|
75
102
|
- hobo_files/plugin/generators/hobo_rapid/templates/hobo-rapid.js
|
103
|
+
- hobo_files/plugin/generators/hobo_rapid/templates/IE7.js
|
76
104
|
- hobo_files/plugin/generators/hobo_rapid/templates/lowpro.js
|
77
105
|
- hobo_files/plugin/generators/hobo_rapid/templates/reset.css
|
78
106
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes
|
@@ -84,10 +112,10 @@ files:
|
|
84
112
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/public/images/small_close.png
|
85
113
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/public/images/spinner.gif
|
86
114
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/public/stylesheets
|
87
|
-
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/public/stylesheets/
|
115
|
+
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/public/stylesheets/clean.css
|
88
116
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/public/stylesheets/rapid-ui.css
|
89
117
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/views
|
90
|
-
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/views/
|
118
|
+
- hobo_files/plugin/generators/hobo_rapid/templates/themes/clean/views/clean.dryml
|
91
119
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes/default
|
92
120
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public
|
93
121
|
- hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images
|
@@ -201,6 +229,18 @@ files:
|
|
201
229
|
- hobo_files/plugin/LICENSE.txt
|
202
230
|
- hobo_files/plugin/Rakefile
|
203
231
|
- hobo_files/plugin/README
|
232
|
+
- hobo_files/plugin/taglib-docs
|
233
|
+
- hobo_files/plugin/taglib-docs/core.markdown
|
234
|
+
- hobo_files/plugin/taglib-docs/rapid.markdown
|
235
|
+
- hobo_files/plugin/taglib-docs/rapid_document_tags.markdown
|
236
|
+
- hobo_files/plugin/taglib-docs/rapid_editing.markdown
|
237
|
+
- hobo_files/plugin/taglib-docs/rapid_forms.markdown
|
238
|
+
- hobo_files/plugin/taglib-docs/rapid_generics.markdown
|
239
|
+
- hobo_files/plugin/taglib-docs/rapid_navigation.markdown
|
240
|
+
- hobo_files/plugin/taglib-docs/rapid_pages.markdown
|
241
|
+
- hobo_files/plugin/taglib-docs/rapid_plus.markdown
|
242
|
+
- hobo_files/plugin/taglib-docs/rapid_support.markdown
|
243
|
+
- hobo_files/plugin/taglib-docs/rapid_user_pages.markdown
|
204
244
|
- hobo_files/plugin/taglibs
|
205
245
|
- hobo_files/plugin/taglibs/core.dryml
|
206
246
|
- hobo_files/plugin/taglibs/rapid.dryml
|
@@ -217,6 +257,7 @@ files:
|
|
217
257
|
- hobo_files/plugin/tasks/dump_fixtures.rake
|
218
258
|
- hobo_files/plugin/tasks/environments.rake
|
219
259
|
- hobo_files/plugin/tasks/fix_dryml.rake
|
260
|
+
- hobo_files/plugin/tasks/generate_tag_reference.rb
|
220
261
|
- hobo_files/plugin/tasks/hobo_tasks.rake
|
221
262
|
- hobo_files/plugin/uninstall.rb
|
222
263
|
- bin/hobo
|