hobo 0.8.8 → 0.8.9
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.txt +34 -0
- data/Rakefile +30 -24
- data/bin/hobo +30 -10
- data/doctest/hobo/hobo_helper.rdoctest +92 -0
- data/doctest/hobo/lifecycles.rdoctest +261 -0
- data/doctest/scopes.rdoctest +387 -0
- data/dryml_generators/rapid/forms.dryml.erb +3 -3
- data/dryml_generators/rapid/pages.dryml.erb +4 -4
- data/lib/active_record/viewhints_validations_interceptor.rb +1 -1
- data/lib/hobo.rb +1 -1
- data/lib/hobo/accessible_associations.rb +3 -3
- data/lib/hobo/authentication_support.rb +1 -1
- data/lib/hobo/dryml.rb +10 -0
- data/lib/hobo/dryml/taglib.rb +3 -5
- data/lib/hobo/hobo_helper.rb +3 -1
- data/lib/hobo/include_in_save.rb +1 -0
- data/lib/hobo/lifecycles/actions.rb +6 -2
- data/lib/hobo/model.rb +1 -1
- data/lib/hobo/model_controller.rb +34 -12
- data/lib/hobo/permissions.rb +1 -1
- data/lib/hobo/rapid_helper.rb +3 -0
- data/lib/hobo/scopes/association_proxy_extensions.rb +8 -2
- data/lib/hobo/scopes/automatic_scopes.rb +3 -3
- data/lib/hobo/user_controller.rb +2 -1
- data/rails_generators/hobo/hobo_generator.rb +1 -1
- data/rails_generators/hobo/templates/application.dryml +0 -2
- data/rails_generators/hobo_admin_site/hobo_admin_site_generator.rb +45 -0
- data/rails_generators/hobo_admin_site/templates/admin.css +2 -0
- data/rails_generators/hobo_admin_site/templates/application.dryml +1 -0
- data/rails_generators/hobo_admin_site/templates/controller.rb +13 -0
- data/rails_generators/hobo_admin_site/templates/site_taglib.dryml +32 -0
- data/rails_generators/hobo_admin_site/templates/users_index.dryml +5 -0
- data/rails_generators/hobo_front_controller/hobo_front_controller_generator.rb +7 -1
- data/rails_generators/hobo_front_controller/templates/index.dryml +16 -0
- data/rails_generators/hobo_rapid/hobo_rapid_generator.rb +31 -1
- data/rails_generators/hobo_rapid/templates/hobo-rapid.js +5 -3
- data/rails_generators/hobo_rapid/templates/lowpro.js +40 -21
- data/rails_generators/hobo_rapid/templates/themes/clean/public/images/101-3B5F87-ACD3E6.png +0 -0
- data/rails_generators/hobo_rapid/templates/themes/clean/public/images/30-3E547A-242E42.png +0 -0
- data/rails_generators/hobo_rapid/templates/themes/clean/public/images/30-DBE1E5-FCFEF5.png +0 -0
- data/rails_generators/hobo_rapid/templates/themes/clean/public/stylesheets/clean.css +12 -4
- data/rails_generators/hobo_subsite/hobo_subsite_generator.rb +1 -1
- data/rails_generators/hobo_user_controller/hobo_user_controller_generator.rb +22 -0
- data/rails_generators/hobo_user_controller/templates/accept_invitation.dryml +5 -0
- data/rails_generators/hobo_user_controller/templates/controller.rb +22 -0
- data/rails_generators/hobo_user_model/hobo_user_model_generator.rb +17 -1
- data/rails_generators/hobo_user_model/templates/invite.erb +9 -0
- data/rails_generators/hobo_user_model/templates/mailer.rb +15 -0
- data/rails_generators/hobo_user_model/templates/model.rb +31 -4
- data/taglibs/rapid_core.dryml +25 -6
- data/taglibs/rapid_forms.dryml +65 -24
- data/taglibs/rapid_lifecycles.dryml +1 -1
- data/taglibs/rapid_navigation.dryml +2 -2
- data/taglibs/rapid_plus.dryml +4 -3
- metadata +151 -210
- data/Manifest +0 -155
- data/hobo.gemspec +0 -46
- data/rails_generators/hobo_rapid/templates/themes/clean/public/images/100-3B5F87-ACD3E6.png +0 -0
data/Manifest
DELETED
@@ -1,155 +0,0 @@
|
|
1
|
-
lib/hobo.rb
|
2
|
-
lib/hobo/lifecycles/state.rb
|
3
|
-
lib/hobo/lifecycles/transition.rb
|
4
|
-
lib/hobo/lifecycles/actions.rb
|
5
|
-
lib/hobo/lifecycles/creator.rb
|
6
|
-
lib/hobo/lifecycles/lifecycle.rb
|
7
|
-
lib/hobo/dryml/tag_parameters.rb
|
8
|
-
lib/hobo/dryml/template_environment.rb
|
9
|
-
lib/hobo/dryml/parser.rb
|
10
|
-
lib/hobo/dryml/template_handler.rb
|
11
|
-
lib/hobo/dryml/parser/source.rb
|
12
|
-
lib/hobo/dryml/parser/tree_parser.rb
|
13
|
-
lib/hobo/dryml/parser/attribute.rb
|
14
|
-
lib/hobo/dryml/parser/text.rb
|
15
|
-
lib/hobo/dryml/parser/base_parser.rb
|
16
|
-
lib/hobo/dryml/parser/document.rb
|
17
|
-
lib/hobo/dryml/parser/elements.rb
|
18
|
-
lib/hobo/dryml/parser/element.rb
|
19
|
-
lib/hobo/dryml/taglib.rb
|
20
|
-
lib/hobo/dryml/dryml_support_controller.rb
|
21
|
-
lib/hobo/dryml/dryml_builder.rb
|
22
|
-
lib/hobo/dryml/dryml_doc.rb
|
23
|
-
lib/hobo/dryml/part_context.rb
|
24
|
-
lib/hobo/dryml/template.rb
|
25
|
-
lib/hobo/dryml/dryml_generator.rb
|
26
|
-
lib/hobo/dryml/scoped_variables.rb
|
27
|
-
lib/hobo/permissions.rb
|
28
|
-
lib/hobo/guest.rb
|
29
|
-
lib/hobo/user_controller.rb
|
30
|
-
lib/hobo/rapid_helper.rb
|
31
|
-
lib/hobo/tasks/rails.rb
|
32
|
-
lib/hobo/permissions/associations.rb
|
33
|
-
lib/hobo/include_in_save.rb
|
34
|
-
lib/hobo/hobo_helper.rb
|
35
|
-
lib/hobo/scopes/named_scope_extensions.rb
|
36
|
-
lib/hobo/scopes/apply_scopes.rb
|
37
|
-
lib/hobo/scopes/automatic_scopes.rb
|
38
|
-
lib/hobo/scopes/association_proxy_extensions.rb
|
39
|
-
lib/hobo/bundle.rb
|
40
|
-
lib/hobo/controller.rb
|
41
|
-
lib/hobo/find_for.rb
|
42
|
-
lib/hobo/lifecycles.rb
|
43
|
-
lib/hobo/undefined.rb
|
44
|
-
lib/hobo/user.rb
|
45
|
-
lib/hobo/dryml.rb
|
46
|
-
lib/hobo/undefined_access_error.rb
|
47
|
-
lib/hobo/authentication_support.rb
|
48
|
-
lib/hobo/dev_controller.rb
|
49
|
-
lib/hobo/accessible_associations.rb
|
50
|
-
lib/hobo/scopes.rb
|
51
|
-
lib/hobo/view_hints.rb
|
52
|
-
lib/hobo/generator.rb
|
53
|
-
lib/hobo/static_tags
|
54
|
-
lib/hobo/model_router.rb
|
55
|
-
lib/hobo/model_controller.rb
|
56
|
-
lib/hobo/model.rb
|
57
|
-
lib/action_view_extensions/helpers/tag_helper.rb
|
58
|
-
lib/active_record/association_proxy.rb
|
59
|
-
lib/active_record/association_reflection.rb
|
60
|
-
lib/active_record/association_collection.rb
|
61
|
-
lib/active_record/viewhints_validations_interceptor.rb
|
62
|
-
bin/hobo
|
63
|
-
Rakefile
|
64
|
-
tasks/hobo_tasks.rake
|
65
|
-
tasks/environments.rake
|
66
|
-
CHANGES.txt
|
67
|
-
taglibs/rapid_document_tags.dryml
|
68
|
-
taglibs/rapid_support.dryml
|
69
|
-
taglibs/rapid_navigation.dryml
|
70
|
-
taglibs/rapid_generics.dryml
|
71
|
-
taglibs/rapid_user_pages.dryml
|
72
|
-
taglibs/core.dryml
|
73
|
-
taglibs/rapid_lifecycles.dryml
|
74
|
-
taglibs/rapid.dryml
|
75
|
-
taglibs/rapid_editing.dryml
|
76
|
-
taglibs/rapid_pages.dryml
|
77
|
-
taglibs/rapid_core.dryml
|
78
|
-
taglibs/rapid_forms.dryml
|
79
|
-
taglibs/rapid_plus.dryml
|
80
|
-
rails_generators/hobo_user_controller/templates/functional_test.rb
|
81
|
-
rails_generators/hobo_user_controller/templates/helper.rb
|
82
|
-
rails_generators/hobo_user_controller/templates/controller.rb
|
83
|
-
rails_generators/hobo_user_controller/USAGE
|
84
|
-
rails_generators/hobo_user_controller/hobo_user_controller_generator.rb
|
85
|
-
rails_generators/hobo_rapid/templates/IE7.js
|
86
|
-
rails_generators/hobo_rapid/templates/reset.css
|
87
|
-
rails_generators/hobo_rapid/templates/blank.gif
|
88
|
-
rails_generators/hobo_rapid/templates/lowpro.js
|
89
|
-
rails_generators/hobo_rapid/templates/ie7-recalc.js
|
90
|
-
rails_generators/hobo_rapid/templates/hobo-rapid.js
|
91
|
-
rails_generators/hobo_rapid/templates/themes/clean/views/clean.dryml
|
92
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/stylesheets/clean.css
|
93
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/stylesheets/rapid-ui.css
|
94
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/images/fieldbg.gif
|
95
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/images/pencil.png
|
96
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/images/50-ACD3E6-fff.png
|
97
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/images/small_close.png
|
98
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/images/100-3B5F87-ACD3E6.png
|
99
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/images/300-ACD3E6-fff.png
|
100
|
-
rails_generators/hobo_rapid/templates/themes/clean/public/images/spinner.gif
|
101
|
-
rails_generators/hobo_rapid/templates/hobo-rapid.css
|
102
|
-
rails_generators/hobo_rapid/hobo_rapid_generator.rb
|
103
|
-
rails_generators/hobo/templates/dryml-support.js
|
104
|
-
rails_generators/hobo/templates/guest.rb
|
105
|
-
rails_generators/hobo/templates/application.dryml
|
106
|
-
rails_generators/hobo/templates/initializer.rb
|
107
|
-
rails_generators/hobo/templates/application.css
|
108
|
-
rails_generators/hobo/hobo_generator.rb
|
109
|
-
rails_generators/hobo_front_controller/hobo_front_controller_generator.rb
|
110
|
-
rails_generators/hobo_front_controller/templates/functional_test.rb
|
111
|
-
rails_generators/hobo_front_controller/templates/helper.rb
|
112
|
-
rails_generators/hobo_front_controller/templates/controller.rb
|
113
|
-
rails_generators/hobo_front_controller/templates/index.dryml
|
114
|
-
rails_generators/hobo_front_controller/USAGE
|
115
|
-
rails_generators/hobo_user_model/templates/mailer.rb
|
116
|
-
rails_generators/hobo_user_model/templates/fixtures.yml
|
117
|
-
rails_generators/hobo_user_model/templates/unit_test.rb
|
118
|
-
rails_generators/hobo_user_model/templates/forgot_password.erb
|
119
|
-
rails_generators/hobo_user_model/templates/model.rb
|
120
|
-
rails_generators/hobo_user_model/USAGE
|
121
|
-
rails_generators/hobo_user_model/hobo_user_model_generator.rb
|
122
|
-
rails_generators/hobo_model/templates/fixtures.yml
|
123
|
-
rails_generators/hobo_model/templates/unit_test.rb
|
124
|
-
rails_generators/hobo_model/templates/hints.rb
|
125
|
-
rails_generators/hobo_model/templates/model.rb
|
126
|
-
rails_generators/hobo_model/USAGE
|
127
|
-
rails_generators/hobo_model/hobo_model_generator.rb
|
128
|
-
rails_generators/hobo_model_controller/templates/functional_test.rb
|
129
|
-
rails_generators/hobo_model_controller/templates/helper.rb
|
130
|
-
rails_generators/hobo_model_controller/templates/controller.rb
|
131
|
-
rails_generators/hobo_model_controller/USAGE
|
132
|
-
rails_generators/hobo_model_controller/hobo_model_controller_generator.rb
|
133
|
-
rails_generators/hobo_model_resource/templates/functional_test.rb
|
134
|
-
rails_generators/hobo_model_resource/templates/helper.rb
|
135
|
-
rails_generators/hobo_model_resource/templates/controller.rb
|
136
|
-
rails_generators/hobo_model_resource/hobo_model_resource_generator.rb
|
137
|
-
rails_generators/hobo_subsite/templates/application.dryml
|
138
|
-
rails_generators/hobo_subsite/templates/controller.rb
|
139
|
-
rails_generators/hobo_subsite/templates/site_taglib.dryml
|
140
|
-
rails_generators/hobo_subsite/hobo_subsite_generator.rb
|
141
|
-
init.rb
|
142
|
-
LICENSE.txt
|
143
|
-
README
|
144
|
-
script/destroy
|
145
|
-
script/generate
|
146
|
-
dryml_generators/rapid/forms.dryml.erb
|
147
|
-
dryml_generators/rapid/pages.dryml.erb
|
148
|
-
dryml_generators/rapid/cards.dryml.erb
|
149
|
-
Manifest
|
150
|
-
test/permissions/models/models.rb
|
151
|
-
test/permissions/models/schema.rb
|
152
|
-
test/permissions/test_permissions.rb
|
153
|
-
test/generators/test_hobo_model_controller_generator.rb
|
154
|
-
test/generators/test_generator_helper.rb
|
155
|
-
test/generators/test_helper.rb
|
data/hobo.gemspec
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
Gem::Specification.new do |s|
|
4
|
-
s.name = %q{hobo}
|
5
|
-
s.version = "0.8.8"
|
6
|
-
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
-
s.authors = ["Tom Locke"]
|
9
|
-
s.date = %q{2009-06-24}
|
10
|
-
s.default_executable = %q{hobo}
|
11
|
-
s.description = %q{The web app builder for Rails}
|
12
|
-
s.email = %q{tom@tomlocke.com}
|
13
|
-
s.executables = ["hobo"]
|
14
|
-
s.extra_rdoc_files = ["lib/hobo.rb", "lib/hobo/lifecycles/state.rb", "lib/hobo/lifecycles/transition.rb", "lib/hobo/lifecycles/actions.rb", "lib/hobo/lifecycles/creator.rb", "lib/hobo/lifecycles/lifecycle.rb", "lib/hobo/dryml/tag_parameters.rb", "lib/hobo/dryml/template_environment.rb", "lib/hobo/dryml/parser.rb", "lib/hobo/dryml/template_handler.rb", "lib/hobo/dryml/parser/source.rb", "lib/hobo/dryml/parser/tree_parser.rb", "lib/hobo/dryml/parser/attribute.rb", "lib/hobo/dryml/parser/text.rb", "lib/hobo/dryml/parser/base_parser.rb", "lib/hobo/dryml/parser/document.rb", "lib/hobo/dryml/parser/elements.rb", "lib/hobo/dryml/parser/element.rb", "lib/hobo/dryml/taglib.rb", "lib/hobo/dryml/dryml_support_controller.rb", "lib/hobo/dryml/dryml_builder.rb", "lib/hobo/dryml/dryml_doc.rb", "lib/hobo/dryml/part_context.rb", "lib/hobo/dryml/template.rb", "lib/hobo/dryml/dryml_generator.rb", "lib/hobo/dryml/scoped_variables.rb", "lib/hobo/permissions.rb", "lib/hobo/guest.rb", "lib/hobo/user_controller.rb", "lib/hobo/rapid_helper.rb", "lib/hobo/tasks/rails.rb", "lib/hobo/permissions/associations.rb", "lib/hobo/include_in_save.rb", "lib/hobo/hobo_helper.rb", "lib/hobo/scopes/named_scope_extensions.rb", "lib/hobo/scopes/apply_scopes.rb", "lib/hobo/scopes/automatic_scopes.rb", "lib/hobo/scopes/association_proxy_extensions.rb", "lib/hobo/bundle.rb", "lib/hobo/controller.rb", "lib/hobo/find_for.rb", "lib/hobo/lifecycles.rb", "lib/hobo/undefined.rb", "lib/hobo/user.rb", "lib/hobo/dryml.rb", "lib/hobo/undefined_access_error.rb", "lib/hobo/authentication_support.rb", "lib/hobo/dev_controller.rb", "lib/hobo/accessible_associations.rb", "lib/hobo/scopes.rb", "lib/hobo/view_hints.rb", "lib/hobo/generator.rb", "lib/hobo/static_tags", "lib/hobo/model_router.rb", "lib/hobo/model_controller.rb", "lib/hobo/model.rb", "lib/action_view_extensions/helpers/tag_helper.rb", "lib/active_record/association_proxy.rb", "lib/active_record/association_reflection.rb", "lib/active_record/association_collection.rb", "lib/active_record/viewhints_validations_interceptor.rb", "bin/hobo", "tasks/hobo_tasks.rake", "tasks/environments.rake", "LICENSE.txt", "README"]
|
15
|
-
s.files = ["lib/hobo.rb", "lib/hobo/lifecycles/state.rb", "lib/hobo/lifecycles/transition.rb", "lib/hobo/lifecycles/actions.rb", "lib/hobo/lifecycles/creator.rb", "lib/hobo/lifecycles/lifecycle.rb", "lib/hobo/dryml/tag_parameters.rb", "lib/hobo/dryml/template_environment.rb", "lib/hobo/dryml/parser.rb", "lib/hobo/dryml/template_handler.rb", "lib/hobo/dryml/parser/source.rb", "lib/hobo/dryml/parser/tree_parser.rb", "lib/hobo/dryml/parser/attribute.rb", "lib/hobo/dryml/parser/text.rb", "lib/hobo/dryml/parser/base_parser.rb", "lib/hobo/dryml/parser/document.rb", "lib/hobo/dryml/parser/elements.rb", "lib/hobo/dryml/parser/element.rb", "lib/hobo/dryml/taglib.rb", "lib/hobo/dryml/dryml_support_controller.rb", "lib/hobo/dryml/dryml_builder.rb", "lib/hobo/dryml/dryml_doc.rb", "lib/hobo/dryml/part_context.rb", "lib/hobo/dryml/template.rb", "lib/hobo/dryml/dryml_generator.rb", "lib/hobo/dryml/scoped_variables.rb", "lib/hobo/permissions.rb", "lib/hobo/guest.rb", "lib/hobo/user_controller.rb", "lib/hobo/rapid_helper.rb", "lib/hobo/tasks/rails.rb", "lib/hobo/permissions/associations.rb", "lib/hobo/include_in_save.rb", "lib/hobo/hobo_helper.rb", "lib/hobo/scopes/named_scope_extensions.rb", "lib/hobo/scopes/apply_scopes.rb", "lib/hobo/scopes/automatic_scopes.rb", "lib/hobo/scopes/association_proxy_extensions.rb", "lib/hobo/bundle.rb", "lib/hobo/controller.rb", "lib/hobo/find_for.rb", "lib/hobo/lifecycles.rb", "lib/hobo/undefined.rb", "lib/hobo/user.rb", "lib/hobo/dryml.rb", "lib/hobo/undefined_access_error.rb", "lib/hobo/authentication_support.rb", "lib/hobo/dev_controller.rb", "lib/hobo/accessible_associations.rb", "lib/hobo/scopes.rb", "lib/hobo/view_hints.rb", "lib/hobo/generator.rb", "lib/hobo/static_tags", "lib/hobo/model_router.rb", "lib/hobo/model_controller.rb", "lib/hobo/model.rb", "lib/action_view_extensions/helpers/tag_helper.rb", "lib/active_record/association_proxy.rb", "lib/active_record/association_reflection.rb", "lib/active_record/association_collection.rb", "lib/active_record/viewhints_validations_interceptor.rb", "bin/hobo", "Rakefile", "tasks/hobo_tasks.rake", "tasks/environments.rake", "CHANGES.txt", "taglibs/rapid_document_tags.dryml", "taglibs/rapid_support.dryml", "taglibs/rapid_navigation.dryml", "taglibs/rapid_generics.dryml", "taglibs/rapid_user_pages.dryml", "taglibs/core.dryml", "taglibs/rapid_lifecycles.dryml", "taglibs/rapid.dryml", "taglibs/rapid_editing.dryml", "taglibs/rapid_pages.dryml", "taglibs/rapid_core.dryml", "taglibs/rapid_forms.dryml", "taglibs/rapid_plus.dryml", "rails_generators/hobo_user_controller/templates/functional_test.rb", "rails_generators/hobo_user_controller/templates/helper.rb", "rails_generators/hobo_user_controller/templates/controller.rb", "rails_generators/hobo_user_controller/USAGE", "rails_generators/hobo_user_controller/hobo_user_controller_generator.rb", "rails_generators/hobo_rapid/templates/IE7.js", "rails_generators/hobo_rapid/templates/reset.css", "rails_generators/hobo_rapid/templates/blank.gif", "rails_generators/hobo_rapid/templates/lowpro.js", "rails_generators/hobo_rapid/templates/ie7-recalc.js", "rails_generators/hobo_rapid/templates/hobo-rapid.js", "rails_generators/hobo_rapid/templates/themes/clean/views/clean.dryml", "rails_generators/hobo_rapid/templates/themes/clean/public/stylesheets/clean.css", "rails_generators/hobo_rapid/templates/themes/clean/public/stylesheets/rapid-ui.css", "rails_generators/hobo_rapid/templates/themes/clean/public/images/fieldbg.gif", "rails_generators/hobo_rapid/templates/themes/clean/public/images/pencil.png", "rails_generators/hobo_rapid/templates/themes/clean/public/images/50-ACD3E6-fff.png", "rails_generators/hobo_rapid/templates/themes/clean/public/images/small_close.png", "rails_generators/hobo_rapid/templates/themes/clean/public/images/100-3B5F87-ACD3E6.png", "rails_generators/hobo_rapid/templates/themes/clean/public/images/300-ACD3E6-fff.png", "rails_generators/hobo_rapid/templates/themes/clean/public/images/spinner.gif", "rails_generators/hobo_rapid/templates/hobo-rapid.css", "rails_generators/hobo_rapid/hobo_rapid_generator.rb", "rails_generators/hobo/templates/dryml-support.js", "rails_generators/hobo/templates/guest.rb", "rails_generators/hobo/templates/application.dryml", "rails_generators/hobo/templates/initializer.rb", "rails_generators/hobo/templates/application.css", "rails_generators/hobo/hobo_generator.rb", "rails_generators/hobo_front_controller/hobo_front_controller_generator.rb", "rails_generators/hobo_front_controller/templates/functional_test.rb", "rails_generators/hobo_front_controller/templates/helper.rb", "rails_generators/hobo_front_controller/templates/controller.rb", "rails_generators/hobo_front_controller/templates/index.dryml", "rails_generators/hobo_front_controller/USAGE", "rails_generators/hobo_user_model/templates/mailer.rb", "rails_generators/hobo_user_model/templates/fixtures.yml", "rails_generators/hobo_user_model/templates/unit_test.rb", "rails_generators/hobo_user_model/templates/forgot_password.erb", "rails_generators/hobo_user_model/templates/model.rb", "rails_generators/hobo_user_model/USAGE", "rails_generators/hobo_user_model/hobo_user_model_generator.rb", "rails_generators/hobo_model/templates/fixtures.yml", "rails_generators/hobo_model/templates/unit_test.rb", "rails_generators/hobo_model/templates/hints.rb", "rails_generators/hobo_model/templates/model.rb", "rails_generators/hobo_model/USAGE", "rails_generators/hobo_model/hobo_model_generator.rb", "rails_generators/hobo_model_controller/templates/functional_test.rb", "rails_generators/hobo_model_controller/templates/helper.rb", "rails_generators/hobo_model_controller/templates/controller.rb", "rails_generators/hobo_model_controller/USAGE", "rails_generators/hobo_model_controller/hobo_model_controller_generator.rb", "rails_generators/hobo_model_resource/templates/functional_test.rb", "rails_generators/hobo_model_resource/templates/helper.rb", "rails_generators/hobo_model_resource/templates/controller.rb", "rails_generators/hobo_model_resource/hobo_model_resource_generator.rb", "rails_generators/hobo_subsite/templates/application.dryml", "rails_generators/hobo_subsite/templates/controller.rb", "rails_generators/hobo_subsite/templates/site_taglib.dryml", "rails_generators/hobo_subsite/hobo_subsite_generator.rb", "init.rb", "LICENSE.txt", "README", "script/destroy", "script/generate", "dryml_generators/rapid/forms.dryml.erb", "dryml_generators/rapid/pages.dryml.erb", "dryml_generators/rapid/cards.dryml.erb", "Manifest", "test/permissions/models/models.rb", "test/permissions/models/schema.rb", "test/permissions/test_permissions.rb", "test/generators/test_hobo_model_controller_generator.rb", "test/generators/test_generator_helper.rb", "test/generators/test_helper.rb", "hobo.gemspec"]
|
16
|
-
s.has_rdoc = true
|
17
|
-
s.homepage = %q{http://hobocentral.net/}
|
18
|
-
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Hobo", "--main", "README"]
|
19
|
-
s.require_paths = ["lib"]
|
20
|
-
s.rubyforge_project = %q{hobo}
|
21
|
-
s.rubygems_version = %q{1.3.1}
|
22
|
-
s.summary = %q{The web app builder for Rails}
|
23
|
-
s.test_files = ["test/generators/test_generator_helper.rb", "test/generators/test_helper.rb", "test/generators/test_hobo_model_controller_generator.rb", "test/permissions/test_permissions.rb"]
|
24
|
-
|
25
|
-
if s.respond_to? :specification_version then
|
26
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
27
|
-
s.specification_version = 2
|
28
|
-
|
29
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
30
|
-
s.add_runtime_dependency(%q<hobosupport>, ["= 0.8.8"])
|
31
|
-
s.add_runtime_dependency(%q<hobofields>, ["= 0.8.8"])
|
32
|
-
s.add_runtime_dependency(%q<rails>, [">= 2.2.2"])
|
33
|
-
s.add_runtime_dependency(%q<mislav-will_paginate>, [">= 2.2.1"])
|
34
|
-
else
|
35
|
-
s.add_dependency(%q<hobosupport>, ["= 0.8.8"])
|
36
|
-
s.add_dependency(%q<hobofields>, ["= 0.8.8"])
|
37
|
-
s.add_dependency(%q<rails>, [">= 2.2.2"])
|
38
|
-
s.add_dependency(%q<mislav-will_paginate>, [">= 2.2.1"])
|
39
|
-
end
|
40
|
-
else
|
41
|
-
s.add_dependency(%q<hobosupport>, ["= 0.8.8"])
|
42
|
-
s.add_dependency(%q<hobofields>, ["= 0.8.8"])
|
43
|
-
s.add_dependency(%q<rails>, [">= 2.2.2"])
|
44
|
-
s.add_dependency(%q<mislav-will_paginate>, [">= 2.2.1"])
|
45
|
-
end
|
46
|
-
end
|