dima-ruboss4ruby 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. data/Generators +7 -0
  2. data/History.txt +4 -0
  3. data/Manifest.txt +116 -0
  4. data/README.rdoc +23 -0
  5. data/gpl-3.0.txt +674 -0
  6. data/lib/ruboss4ruby.rb +84 -0
  7. data/lib/ruboss4ruby/active_foo.rb +221 -0
  8. data/lib/ruboss4ruby/active_record_tasks.rb +75 -0
  9. data/lib/ruboss4ruby/configuration.rb +59 -0
  10. data/lib/ruboss4ruby/datamapper_foo.rb +25 -0
  11. data/lib/ruboss4ruby/generated_attribute.rb +61 -0
  12. data/lib/ruboss4ruby/tasks.rb +80 -0
  13. data/merb_generators/ruboss_config.rb +103 -0
  14. data/merb_generators/ruboss_controller.rb +59 -0
  15. data/merb_generators/ruboss_flex_app.rb +67 -0
  16. data/merb_generators/ruboss_resource.rb +37 -0
  17. data/merb_generators/ruboss_resource_controller.rb +80 -0
  18. data/merb_generators/ruboss_scaffold.rb +157 -0
  19. data/merb_generators/templates/ruboss_config/actionscript.properties +16 -0
  20. data/merb_generators/templates/ruboss_config/actionscriptair.properties +16 -0
  21. data/merb_generators/templates/ruboss_config/expressInstall.swf +0 -0
  22. data/merb_generators/templates/ruboss_config/flex.properties +2 -0
  23. data/merb_generators/templates/ruboss_config/html-template/AC_OETags.js +276 -0
  24. data/merb_generators/templates/ruboss_config/html-template/history/history.css +6 -0
  25. data/merb_generators/templates/ruboss_config/html-template/history/history.js +645 -0
  26. data/merb_generators/templates/ruboss_config/html-template/history/historyFrame.html +29 -0
  27. data/merb_generators/templates/ruboss_config/html-template/index.template.html +121 -0
  28. data/merb_generators/templates/ruboss_config/html-template/playerProductInstall.swf +0 -0
  29. data/merb_generators/templates/ruboss_config/index.html.erb +18 -0
  30. data/merb_generators/templates/ruboss_config/mainair-app.xml +134 -0
  31. data/merb_generators/templates/ruboss_config/project.properties +18 -0
  32. data/merb_generators/templates/ruboss_config/projectair.properties +24 -0
  33. data/merb_generators/templates/ruboss_config/ruboss.yml +16 -0
  34. data/merb_generators/templates/ruboss_config/swfobject.js +5 -0
  35. data/merb_generators/templates/ruboss_controller/controller.as.erb +40 -0
  36. data/merb_generators/templates/ruboss_flex_app/mainapp.mxml +34 -0
  37. data/merb_generators/templates/ruboss_resource_controller/controller_ar.rb.erb +49 -0
  38. data/merb_generators/templates/ruboss_resource_controller/controller_dm.rb.erb +46 -0
  39. data/merb_generators/templates/ruboss_resource_controller/spec/controllers/%file_name%_spec.rb +7 -0
  40. data/merb_generators/templates/ruboss_resource_controller/spec/requests/%file_name%_spec.rb +1 -0
  41. data/merb_generators/templates/ruboss_resource_controller/test/controllers/%file_name%_test.rb +17 -0
  42. data/rails_generators/ruboss_config/USAGE +18 -0
  43. data/rails_generators/ruboss_config/ruboss_config_generator.rb +114 -0
  44. data/rails_generators/ruboss_config/templates/actionscript.properties +16 -0
  45. data/rails_generators/ruboss_config/templates/actionscriptair.properties +16 -0
  46. data/rails_generators/ruboss_config/templates/expressInstall.swf +0 -0
  47. data/rails_generators/ruboss_config/templates/flex.properties +2 -0
  48. data/rails_generators/ruboss_config/templates/html-template/AC_OETags.js +276 -0
  49. data/rails_generators/ruboss_config/templates/html-template/history/history.css +6 -0
  50. data/rails_generators/ruboss_config/templates/html-template/history/history.js +645 -0
  51. data/rails_generators/ruboss_config/templates/html-template/history/historyFrame.html +29 -0
  52. data/rails_generators/ruboss_config/templates/html-template/index.template.html +121 -0
  53. data/rails_generators/ruboss_config/templates/html-template/playerProductInstall.swf +0 -0
  54. data/rails_generators/ruboss_config/templates/index.html.erb +18 -0
  55. data/rails_generators/ruboss_config/templates/mainair-app.xml +134 -0
  56. data/rails_generators/ruboss_config/templates/mainapp-config.xml +21 -0
  57. data/rails_generators/ruboss_config/templates/mainapp.mxml +31 -0
  58. data/rails_generators/ruboss_config/templates/project-textmate.erb +52 -0
  59. data/rails_generators/ruboss_config/templates/project.properties +18 -0
  60. data/rails_generators/ruboss_config/templates/projectair.properties +24 -0
  61. data/rails_generators/ruboss_config/templates/ruboss.yml +14 -0
  62. data/rails_generators/ruboss_config/templates/ruboss_tasks.rake +5 -0
  63. data/rails_generators/ruboss_config/templates/swfobject.js +5 -0
  64. data/rails_generators/ruboss_controller/USAGE +11 -0
  65. data/rails_generators/ruboss_controller/ruboss_controller_generator.rb +31 -0
  66. data/rails_generators/ruboss_controller/templates/controller.as.erb +40 -0
  67. data/rails_generators/ruboss_scaffold/USAGE +35 -0
  68. data/rails_generators/ruboss_scaffold/ruboss_scaffold_generator.rb +177 -0
  69. data/rails_generators/ruboss_scaffold/templates/component.mxml.erb +149 -0
  70. data/rails_generators/ruboss_scaffold/templates/controller.rb.erb +97 -0
  71. data/rails_generators/ruboss_scaffold/templates/fixtures.yml.erb +35 -0
  72. data/rails_generators/ruboss_scaffold/templates/migration.rb.erb +19 -0
  73. data/rails_generators/ruboss_scaffold/templates/model.as.erb +42 -0
  74. data/rails_generators/ruboss_scaffold/templates/model.rb.erb +11 -0
  75. data/rails_generators/ruboss_yaml_scaffold/USAGE +14 -0
  76. data/rails_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb +44 -0
  77. data/rcl-1.0.txt +0 -0
  78. metadata +197 -0
@@ -0,0 +1,97 @@
1
+ class <%= controller_class_name %>Controller < ApplicationController
2
+ # GET /<%= table_name %>
3
+ # GET /<%= table_name %>.xml
4
+ # GET /<%= table_name %>.fxml
5
+ def index
6
+ @<%= table_name %> = <%= class_name %>.find(:all)
7
+
8
+ respond_to do |format|
9
+ format.html # index.html.erb
10
+ format.xml { render :xml => @<%= table_name %> }
11
+ format.fxml { render :fxml => @<%= table_name %> }
12
+ end
13
+ end
14
+
15
+ # GET /<%= table_name %>/1
16
+ # GET /<%= table_name %>/1.xml
17
+ # GET /<%= table_name %>/1.fxml
18
+ def show
19
+ @<%= file_name %> = <%= class_name %>.find(params[:id])
20
+
21
+ respond_to do |format|
22
+ format.html # show.html.erb
23
+ format.xml { render :xml => @<%= file_name %> }
24
+ format.fxml { render :fxml => @<%= file_name %> }
25
+ end
26
+ end
27
+
28
+ # GET /<%= table_name %>/new
29
+ # GET /<%= table_name %>/new.xml
30
+ def new
31
+ @<%= file_name %> = <%= class_name %>.new
32
+
33
+ respond_to do |format|
34
+ format.html # new.html.erb
35
+ format.xml { render :xml => @<%= file_name %> }
36
+ end
37
+ end
38
+
39
+ # GET /<%= table_name %>/1/edit
40
+ def edit
41
+ @<%= file_name %> = <%= class_name %>.find(params[:id])
42
+ end
43
+
44
+ # POST /<%= table_name %>
45
+ # POST /<%= table_name %>.xml
46
+ # POST /<%= table_name %>.fxml
47
+ def create
48
+ @<%= file_name %> = <%= class_name %>.new(params[:<%= file_name %>])
49
+
50
+ respond_to do |format|
51
+ if @<%= file_name %>.save
52
+ flash[:notice] = '<%= class_name %> was successfully created.'
53
+ format.html { redirect_to(@<%= file_name %>) }
54
+ format.xml { render :xml => @<%= file_name %>, :status => :created, :location => @<%= file_name %> }
55
+ format.fxml { render :fxml => @<%= file_name %> }
56
+ else
57
+ format.html { render :action => "new" }
58
+ format.xml { render :xml => @<%= file_name %>.errors, :status => :unprocessable_entity }
59
+ format.fxml { render :fxml => @<%= file_name %>.errors }
60
+ end
61
+ end
62
+ end
63
+
64
+ # PUT /<%= table_name %>/1
65
+ # PUT /<%= table_name %>/1.xml
66
+ # PUT /<%= table_name %>/1.fxml
67
+ def update
68
+ @<%= file_name %> = <%= class_name %>.find(params[:id])
69
+
70
+ respond_to do |format|
71
+ if @<%= file_name %>.update_attributes(params[:<%= file_name %>])
72
+ flash[:notice] = '<%= class_name %> was successfully updated.'
73
+ format.html { redirect_to(@<%= file_name %>) }
74
+ format.xml { head :ok }
75
+ format.fxml { render :fxml => @<%= file_name %> }
76
+ else
77
+ format.html { render :action => "edit" }
78
+ format.xml { render :xml => @<%= file_name %>.errors, :status => :unprocessable_entity }
79
+ format.fxml { render :fxml => @<%= file_name %>.errors }
80
+ end
81
+ end
82
+ end
83
+
84
+ # DELETE /<%= table_name %>/1
85
+ # DELETE /<%= table_name %>/1.xml
86
+ # DELETE /<%= table_name %>/1.fxml
87
+ def destroy
88
+ @<%= file_name %> = <%= class_name %>.find(params[:id])
89
+ @<%= file_name %>.destroy
90
+
91
+ respond_to do |format|
92
+ format.html { redirect_to(<%= table_name %>_url) }
93
+ format.xml { head :ok }
94
+ format.fxml { render :fxml => @<%= file_name %> }
95
+ end
96
+ end
97
+ end
@@ -0,0 +1,35 @@
1
+ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
2
+
3
+ <% unless attributes.empty? && belongs_tos.empty? -%>
4
+ <%= class_name.underscore -%>_one:
5
+ <% for attribute in attributes -%>
6
+ <%= attribute.name %>: <%= attribute.default("#{class_name}1") %>
7
+ <% end -%>
8
+ <% for model in belongs_tos -%>
9
+ <%= model %>: <%= model %>_one
10
+ <% end -%>
11
+
12
+ <%= class_name.underscore -%>_two:
13
+ <% for attribute in attributes -%>
14
+ <%= attribute.name %>: <%= attribute.default("#{class_name}2") %>
15
+ <% end -%>
16
+ <% for model in belongs_tos -%>
17
+ <%= model %>: <%= model %>_two
18
+ <% end -%>
19
+
20
+ <%= class_name.underscore -%>_three:
21
+ <% for attribute in attributes -%>
22
+ <%= attribute.name %>: <%= attribute.default("#{class_name}3") %>
23
+ <% end -%>
24
+ <% for model in belongs_tos -%>
25
+ <%= model %>: <%= model %>_three
26
+ <% end -%>
27
+
28
+ <%= class_name.underscore -%>_four:
29
+ <% for attribute in attributes -%>
30
+ <%= attribute.name %>: <%= attribute.default("#{class_name}4") %>
31
+ <% end -%>
32
+ <% for model in belongs_tos -%>
33
+ <%= model %>: <%= model %>_four
34
+ <% end -%>
35
+ <% end -%>
@@ -0,0 +1,19 @@
1
+ class <%= migration_name %> < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :<%= table_name %> do |t|
4
+ <% for attribute in attributes -%>
5
+ t.<%= attribute.type %> :<%= attribute.name %>
6
+ <% end -%>
7
+ <% for model in belongs_tos -%>
8
+ t.references :<%= model %>
9
+ <% end -%>
10
+ <% unless options[:skip_timestamps] %>
11
+ t.timestamps
12
+ <% end -%>
13
+ end
14
+ end
15
+
16
+ def self.down
17
+ drop_table :<%= table_name %>
18
+ end
19
+ end
@@ -0,0 +1,42 @@
1
+ package <%= base_package %>.models {
2
+ <% if has_manies.length > 0 -%>
3
+ import org.ruboss.models.ModelsCollection;
4
+ <% end -%>
5
+ import org.ruboss.models.RubossModel;
6
+
7
+ [Resource(name="<%= resource_controller_name %>")]
8
+ [Bindable]
9
+ public class <%= class_name %> extends RubossModel {
10
+ <% if attributes && !attributes.empty? && attributes[0].flex_type != "Boolean" -%>
11
+ public static const LABEL:String = "<%= attributes[0].flex_name %>";
12
+ <% else -%>
13
+ public static const LABEL:String = "id";
14
+ <% end -%>
15
+
16
+ <% for attribute in attributes -%>
17
+ <% if attribute.type == :datetime || attribute.type == :time -%>
18
+ [DateTime]
19
+ <% end -%>
20
+ public var <%= attribute.flex_name %>:<%= attribute.flex_type %>;
21
+
22
+ <% end -%>
23
+ <% for model in belongs_tos -%>
24
+ [BelongsTo]
25
+ public var <%= model.camelcase(:lower) %>:<%= model.camelcase %>;
26
+
27
+ <% end -%>
28
+ <% for model in has_ones -%>
29
+ [HasOne]
30
+ public var <%= model.camelcase(:lower) %>:<%= model.camelcase %>;
31
+
32
+ <% end -%>
33
+ <% for model in has_manies -%>
34
+ [HasMany]
35
+ public var <%= model.camelcase(:lower) %>:ModelsCollection;
36
+
37
+ <% end -%>
38
+ public function <%= class_name %>() {
39
+ super(LABEL);
40
+ }
41
+ }
42
+ }
@@ -0,0 +1,11 @@
1
+ class <%= class_name %> < ActiveRecord::Base
2
+ <% for model in belongs_tos -%>
3
+ belongs_to :<%= model %>
4
+ <% end -%>
5
+ <% for model in has_ones -%>
6
+ has_one :<%= model %>
7
+ <% end -%>
8
+ <% for model in has_manies -%>
9
+ has_many :<%= model %>
10
+ <% end -%>
11
+ end
@@ -0,0 +1,14 @@
1
+ Description:
2
+ Scaffolds an entire application based on db/model.yml file. This generator
3
+ transforms entries in db/model.yml into command line calls to
4
+ "ruboss_scaffold".
5
+
6
+ ruboss_scaffold delegates the underlying rails code generation to "scaffold"
7
+ and extends it in a number of ways:
8
+ 1. Generates all required Flex code.
9
+ 2. You can pass special belongs_to, has_one and has_many attributes
10
+ to generate *all* appropriate relationships. No more manual code
11
+ editing.
12
+
13
+ Examples:
14
+ `./script/generate ruboss_yaml_scaffold`
@@ -0,0 +1,44 @@
1
+ require 'yaml'
2
+
3
+ class RubossYamlScaffoldGenerator < Rails::Generator::Base
4
+ def extract_attrs(line, attrs)
5
+ attrs.each do |key,value|
6
+ if value.class == Array
7
+ line << " #{key}:#{value.join(',')}"
8
+ else
9
+ line << " #{key}:#{value}"
10
+ end
11
+ end
12
+ line
13
+ end
14
+
15
+ def manifest
16
+ record do |m|
17
+ models = YAML.load(File.open(File.join(RAILS_ROOT, 'db/model.yml'), 'r'))
18
+ models.each do |model|
19
+ line = ""
20
+ attrs = model[1]
21
+ if attrs.class == Array
22
+ attrs.each do |elm|
23
+ line = extract_attrs(line, elm)
24
+ end
25
+ else
26
+ line = extract_attrs(line, attrs)
27
+ end
28
+ line = model[0].camelcase + " " + line
29
+ puts 'running: ruboss_scaffold ' + line
30
+ Rails::Generator::Scripts::Generate.new.run(["ruboss_scaffold"] + line.split,
31
+ :flex_only => ARGV.include?('flexonly'))
32
+ puts 'done ...'
33
+ sleep 1
34
+ end
35
+ Rails::Generator::Scripts::Generate.new.run(["ruboss_config"], :main_only => true,
36
+ :skip_framework => ARGV.include?('skipframework'))
37
+ end
38
+ end
39
+
40
+ protected
41
+ def banner
42
+ "Usage: #{$0} #{spec.name}"
43
+ end
44
+ end
data/rcl-1.0.txt ADDED
Binary file
metadata ADDED
@@ -0,0 +1,197 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dima-ruboss4ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.5
5
+ platform: ruby
6
+ authors:
7
+ - Dima Berastau
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-11-26 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: newgem
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.1.0
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: hoe
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 1.8.0
32
+ version:
33
+ description: Ruboss Framework Rails 2.1+ and Merb 0.9.8+ Integration Support
34
+ email:
35
+ - dima@ruboss.com
36
+ executables: []
37
+
38
+ extensions: []
39
+
40
+ extra_rdoc_files:
41
+ - History.txt
42
+ - Manifest.txt
43
+ - README.rdoc
44
+ - gpl-3.0.txt
45
+ - rcl-1.0.txt
46
+ - test/playing_around_in_a_console.txt
47
+ files:
48
+ - Generators
49
+ - History.txt
50
+ - Manifest.txt
51
+ - README.rdoc
52
+ - gpl-3.0.txt
53
+ - lib/ruboss4ruby.rb
54
+ - lib/ruboss4ruby/active_foo.rb
55
+ - lib/ruboss4ruby/active_record_tasks.rb
56
+ - lib/ruboss4ruby/configuration.rb
57
+ - lib/ruboss4ruby/datamapper_foo.rb
58
+ - lib/ruboss4ruby/generated_attribute.rb
59
+ - lib/ruboss4ruby/recipes.rb
60
+ - lib/ruboss4ruby/ruboss_helper.rb
61
+ - lib/ruboss4ruby/ruboss_test_helpers.rb
62
+ - lib/ruboss4ruby/tasks.rb
63
+ - lib/ruboss4ruby/version.rb
64
+ - merb_generators/ruboss_config.rb
65
+ - merb_generators/ruboss_controller.rb
66
+ - merb_generators/ruboss_flex_app.rb
67
+ - merb_generators/ruboss_resource.rb
68
+ - merb_generators/ruboss_resource_controller.rb
69
+ - merb_generators/ruboss_scaffold.rb
70
+ - merb_generators/templates/ruboss_config/actionscript.properties
71
+ - merb_generators/templates/ruboss_config/actionscriptair.properties
72
+ - merb_generators/templates/ruboss_config/expressInstall.swf
73
+ - merb_generators/templates/ruboss_config/flex.properties
74
+ - merb_generators/templates/ruboss_config/html-template/AC_OETags.js
75
+ - merb_generators/templates/ruboss_config/html-template/history/history.css
76
+ - merb_generators/templates/ruboss_config/html-template/history/history.js
77
+ - merb_generators/templates/ruboss_config/html-template/history/historyFrame.html
78
+ - merb_generators/templates/ruboss_config/html-template/index.template.html
79
+ - merb_generators/templates/ruboss_config/html-template/playerProductInstall.swf
80
+ - merb_generators/templates/ruboss_config/index.html.erb
81
+ - merb_generators/templates/ruboss_config/mainair-app.xml
82
+ - merb_generators/templates/ruboss_config/project.properties
83
+ - merb_generators/templates/ruboss_config/projectair.properties
84
+ - merb_generators/templates/ruboss_config/ruboss.yml
85
+ - merb_generators/templates/ruboss_config/swfobject.js
86
+ - merb_generators/templates/ruboss_controller/controller.as.erb
87
+ - merb_generators/templates/ruboss_flex_app/mainapp.mxml
88
+ - merb_generators/templates/ruboss_resource_controller/controller_ar.rb.erb
89
+ - merb_generators/templates/ruboss_resource_controller/controller_dm.rb.erb
90
+ - merb_generators/templates/ruboss_resource_controller/spec/controllers/%file_name%_spec.rb
91
+ - merb_generators/templates/ruboss_resource_controller/spec/requests/%file_name%_spec.rb
92
+ - merb_generators/templates/ruboss_resource_controller/test/controllers/%file_name%_test.rb
93
+ - rails_generators/ruboss_config/USAGE
94
+ - rails_generators/ruboss_config/ruboss_config_generator.rb
95
+ - rails_generators/ruboss_config/templates/actionscript.properties
96
+ - rails_generators/ruboss_config/templates/actionscriptair.properties
97
+ - rails_generators/ruboss_config/templates/expressInstall.swf
98
+ - rails_generators/ruboss_config/templates/flex.properties
99
+ - rails_generators/ruboss_config/templates/html-template/AC_OETags.js
100
+ - rails_generators/ruboss_config/templates/html-template/history/history.css
101
+ - rails_generators/ruboss_config/templates/html-template/history/history.js
102
+ - rails_generators/ruboss_config/templates/html-template/history/historyFrame.html
103
+ - rails_generators/ruboss_config/templates/html-template/index.template.html
104
+ - rails_generators/ruboss_config/templates/html-template/playerProductInstall.swf
105
+ - rails_generators/ruboss_config/templates/index.html.erb
106
+ - rails_generators/ruboss_config/templates/mainair-app.xml
107
+ - rails_generators/ruboss_config/templates/mainapp-config.xml
108
+ - rails_generators/ruboss_config/templates/mainapp.mxml
109
+ - rails_generators/ruboss_config/templates/project-textmate.erb
110
+ - rails_generators/ruboss_config/templates/project.properties
111
+ - rails_generators/ruboss_config/templates/projectair.properties
112
+ - rails_generators/ruboss_config/templates/ruboss.yml
113
+ - rails_generators/ruboss_config/templates/ruboss_tasks.rake
114
+ - rails_generators/ruboss_config/templates/swfobject.js
115
+ - rails_generators/ruboss_controller/USAGE
116
+ - rails_generators/ruboss_controller/ruboss_controller_generator.rb
117
+ - rails_generators/ruboss_controller/templates/controller.as.erb
118
+ - rails_generators/ruboss_scaffold/USAGE
119
+ - rails_generators/ruboss_scaffold/ruboss_scaffold_generator.rb
120
+ - rails_generators/ruboss_scaffold/templates/component.mxml.erb
121
+ - rails_generators/ruboss_scaffold/templates/controller.rb.erb
122
+ - rails_generators/ruboss_scaffold/templates/fixtures.yml.erb
123
+ - rails_generators/ruboss_scaffold/templates/migration.rb.erb
124
+ - rails_generators/ruboss_scaffold/templates/model.as.erb
125
+ - rails_generators/ruboss_scaffold/templates/model.rb.erb
126
+ - rails_generators/ruboss_yaml_scaffold/USAGE
127
+ - rails_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb
128
+ - rcl-1.0.txt
129
+ - test/controllers/application.rb
130
+ - test/controllers/locations_controller.rb
131
+ - test/controllers/notes_controller.rb
132
+ - test/controllers/projects_controller.rb
133
+ - test/controllers/tasks_controller.rb
134
+ - test/controllers/users_controller.rb
135
+ - test/database.yml
136
+ - test/fixtures/locations.yml
137
+ - test/fixtures/notes.yml
138
+ - test/fixtures/projects.yml
139
+ - test/fixtures/tasks.yml
140
+ - test/fixtures/users.yml
141
+ - test/helpers/controllers.log
142
+ - test/helpers/functional_test_helper.rb
143
+ - test/helpers/models.log
144
+ - test/helpers/test_helper.rb
145
+ - test/helpers/unit_test_helper.rb
146
+ - test/model.yml
147
+ - test/models/location.rb
148
+ - test/models/note.rb
149
+ - test/models/project.rb
150
+ - test/models/task.rb
151
+ - test/models/user.rb
152
+ - test/playing_around_in_a_console.txt
153
+ - test/schema.rb
154
+ - test/test.sqlite3
155
+ - test/test.swf
156
+ - test/test_active_foo.rb
157
+ - test/test_helper.rb
158
+ - test/test_ruboss4ruby.rb
159
+ - test/test_ruboss_rails_integration_functional.rb
160
+ - test/test_swfobject_helper.rb
161
+ - test/to_fxml_test.rb
162
+ - test/views/notes/empty_params_action.html.erb
163
+ - test/views/notes/index.html.erb
164
+ has_rdoc: true
165
+ homepage: http://www.ruboss.com/framework
166
+ post_install_message:
167
+ rdoc_options:
168
+ - --main
169
+ - README.rdoc
170
+ require_paths:
171
+ - lib
172
+ required_ruby_version: !ruby/object:Gem::Requirement
173
+ requirements:
174
+ - - ">="
175
+ - !ruby/object:Gem::Version
176
+ version: "0"
177
+ version:
178
+ required_rubygems_version: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: "0"
183
+ version:
184
+ requirements: []
185
+
186
+ rubyforge_project: ruboss4ruby
187
+ rubygems_version: 1.2.0
188
+ signing_key:
189
+ specification_version: 2
190
+ summary: Ruboss Framework Rails 2.1+ and Merb 0.9.8+ Integration Support
191
+ test_files:
192
+ - test/helpers/test_helper.rb
193
+ - test/test_active_foo.rb
194
+ - test/test_helper.rb
195
+ - test/test_ruboss4ruby.rb
196
+ - test/test_ruboss_rails_integration_functional.rb
197
+ - test/test_swfobject_helper.rb