ruboss_on_ruby 1.0.1
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/History.txt +3 -0
- data/Manifest.txt +101 -0
- data/README.txt +37 -0
- data/Rakefile +4 -0
- data/config/hoe.rb +72 -0
- data/config/requirements.rb +15 -0
- data/gpl-3.0.txt +674 -0
- data/lib/ruboss_on_ruby.rb +64 -0
- data/lib/ruboss_on_ruby/active_foo.rb +127 -0
- data/lib/ruboss_on_ruby/active_record_tasks.rb +75 -0
- data/lib/ruboss_on_ruby/configuration.rb +38 -0
- data/lib/ruboss_on_ruby/tasks.rb +74 -0
- data/lib/ruboss_on_ruby/version.rb +11 -0
- data/merb_generators/ruboss_config/USAGE +18 -0
- data/merb_generators/ruboss_config/ruboss_config_generator.rb +135 -0
- data/merb_generators/ruboss_config/templates/actionscript.properties +16 -0
- data/merb_generators/ruboss_config/templates/actionscriptair.properties +16 -0
- data/merb_generators/ruboss_config/templates/expressInstall.swf +0 -0
- data/merb_generators/ruboss_config/templates/flex.properties +2 -0
- data/merb_generators/ruboss_config/templates/html-template/AC_OETags.js +276 -0
- data/merb_generators/ruboss_config/templates/html-template/history/history.css +6 -0
- data/merb_generators/ruboss_config/templates/html-template/history/history.js +645 -0
- data/merb_generators/ruboss_config/templates/html-template/history/historyFrame.html +29 -0
- data/merb_generators/ruboss_config/templates/html-template/index.template.html +121 -0
- data/merb_generators/ruboss_config/templates/html-template/playerProductInstall.swf +0 -0
- data/merb_generators/ruboss_config/templates/index.html.erb +19 -0
- data/merb_generators/ruboss_config/templates/mainair-app.xml +134 -0
- data/merb_generators/ruboss_config/templates/mainapp.mxml +34 -0
- data/merb_generators/ruboss_config/templates/project.properties +18 -0
- data/merb_generators/ruboss_config/templates/projectair.properties +24 -0
- data/merb_generators/ruboss_config/templates/swfobject.js +5 -0
- data/merb_generators/ruboss_controller/USAGE +11 -0
- data/merb_generators/ruboss_controller/ruboss_controller_generator.rb +32 -0
- data/merb_generators/ruboss_controller/templates/controller.as.erb +35 -0
- data/merb_generators/ruboss_resource_controller/USAGE +5 -0
- data/merb_generators/ruboss_resource_controller/ruboss_resource_controller_generator.rb +70 -0
- data/merb_generators/ruboss_resource_controller/templates/app/controllers/%controller_file_name%.rb +55 -0
- data/merb_generators/ruboss_resource_controller/templates/app/helpers/%controller_file_name%_helper.rb +16 -0
- data/merb_generators/ruboss_scaffold/USAGE +5 -0
- data/merb_generators/ruboss_scaffold/ruboss_scaffold_generator.rb +190 -0
- data/merb_generators/ruboss_scaffold/templates/component.mxml.erb +148 -0
- data/merb_generators/ruboss_scaffold/templates/fixtures.yml.erb +35 -0
- data/merb_generators/ruboss_scaffold/templates/migration.rb.erb +19 -0
- data/merb_generators/ruboss_scaffold/templates/model.as.erb +42 -0
- data/merb_generators/ruboss_scaffold/templates/model.rb.erb +11 -0
- data/merb_generators/ruboss_yaml_scaffold/USAGE +5 -0
- data/merb_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb +53 -0
- data/rails_generators/ruboss_config/USAGE +18 -0
- data/rails_generators/ruboss_config/ruboss_config_generator.rb +126 -0
- data/rails_generators/ruboss_config/templates/actionscript.properties +16 -0
- data/rails_generators/ruboss_config/templates/actionscriptair.properties +16 -0
- data/rails_generators/ruboss_config/templates/expressInstall.swf +0 -0
- data/rails_generators/ruboss_config/templates/flex.properties +2 -0
- data/rails_generators/ruboss_config/templates/html-template/AC_OETags.js +276 -0
- data/rails_generators/ruboss_config/templates/html-template/history/history.css +6 -0
- data/rails_generators/ruboss_config/templates/html-template/history/history.js +645 -0
- data/rails_generators/ruboss_config/templates/html-template/history/historyFrame.html +29 -0
- data/rails_generators/ruboss_config/templates/html-template/index.template.html +121 -0
- data/rails_generators/ruboss_config/templates/html-template/playerProductInstall.swf +0 -0
- data/rails_generators/ruboss_config/templates/index.html.erb +19 -0
- data/rails_generators/ruboss_config/templates/mainair-app.xml +134 -0
- data/rails_generators/ruboss_config/templates/mainapp.mxml +34 -0
- data/rails_generators/ruboss_config/templates/project.properties +18 -0
- data/rails_generators/ruboss_config/templates/projectair.properties +24 -0
- data/rails_generators/ruboss_config/templates/ruboss_tasks.rake +15 -0
- data/rails_generators/ruboss_config/templates/swfobject.js +5 -0
- data/rails_generators/ruboss_controller/USAGE +11 -0
- data/rails_generators/ruboss_controller/ruboss_controller_generator.rb +46 -0
- data/rails_generators/ruboss_controller/templates/controller.as.erb +35 -0
- data/rails_generators/ruboss_scaffold/USAGE +35 -0
- data/rails_generators/ruboss_scaffold/ruboss_scaffold_generator.rb +193 -0
- data/rails_generators/ruboss_scaffold/templates/component.mxml.erb +148 -0
- data/rails_generators/ruboss_scaffold/templates/controller.rb.erb +97 -0
- data/rails_generators/ruboss_scaffold/templates/fixtures.yml.erb +35 -0
- data/rails_generators/ruboss_scaffold/templates/migration.rb.erb +19 -0
- data/rails_generators/ruboss_scaffold/templates/model.as.erb +42 -0
- data/rails_generators/ruboss_scaffold/templates/model.rb.erb +11 -0
- data/rails_generators/ruboss_yaml_scaffold/USAGE +14 -0
- data/rails_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb +45 -0
- data/rcl-1.0.txt +0 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +82 -0
- data/setup.rb +1585 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +17 -0
- data/test/active_foo_test.rb +16 -0
- data/test/test_generator_helper.rb +29 -0
- data/test/test_helper.rb +2 -0
- data/test/test_ruboss_config_generator.rb +45 -0
- data/test/test_ruboss_controller_generator.rb +45 -0
- data/test/test_ruboss_on_ruby.rb +11 -0
- data/test/test_ruboss_scaffold_generator.rb +45 -0
- data/test/test_ruboss_yaml_scaffold_generator.rb +46 -0
- data/website/index.html +86 -0
- data/website/index.txt +83 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.html.erb +48 -0
- metadata +166 -0
metadata
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruboss_on_ruby
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Dima Berastau
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2008-08-27 00:00:00 -07:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description: Ruboss Framework Integration Support for Rails 2.+ and Merb 0.9.3+
|
|
17
|
+
email:
|
|
18
|
+
- dima@ruboss.com
|
|
19
|
+
executables: []
|
|
20
|
+
|
|
21
|
+
extensions: []
|
|
22
|
+
|
|
23
|
+
extra_rdoc_files:
|
|
24
|
+
- History.txt
|
|
25
|
+
- Manifest.txt
|
|
26
|
+
- README.txt
|
|
27
|
+
- gpl-3.0.txt
|
|
28
|
+
- rcl-1.0.txt
|
|
29
|
+
- website/index.txt
|
|
30
|
+
files:
|
|
31
|
+
- History.txt
|
|
32
|
+
- Manifest.txt
|
|
33
|
+
- README.txt
|
|
34
|
+
- Rakefile
|
|
35
|
+
- config/hoe.rb
|
|
36
|
+
- config/requirements.rb
|
|
37
|
+
- gpl-3.0.txt
|
|
38
|
+
- lib/ruboss_on_ruby.rb
|
|
39
|
+
- lib/ruboss_on_ruby/active_foo.rb
|
|
40
|
+
- lib/ruboss_on_ruby/active_record_tasks.rb
|
|
41
|
+
- lib/ruboss_on_ruby/configuration.rb
|
|
42
|
+
- lib/ruboss_on_ruby/tasks.rb
|
|
43
|
+
- lib/ruboss_on_ruby/version.rb
|
|
44
|
+
- merb_generators/ruboss_config/USAGE
|
|
45
|
+
- merb_generators/ruboss_config/ruboss_config_generator.rb
|
|
46
|
+
- merb_generators/ruboss_config/templates/actionscript.properties
|
|
47
|
+
- merb_generators/ruboss_config/templates/actionscriptair.properties
|
|
48
|
+
- merb_generators/ruboss_config/templates/expressInstall.swf
|
|
49
|
+
- merb_generators/ruboss_config/templates/flex.properties
|
|
50
|
+
- merb_generators/ruboss_config/templates/html-template/AC_OETags.js
|
|
51
|
+
- merb_generators/ruboss_config/templates/html-template/history/history.css
|
|
52
|
+
- merb_generators/ruboss_config/templates/html-template/history/history.js
|
|
53
|
+
- merb_generators/ruboss_config/templates/html-template/history/historyFrame.html
|
|
54
|
+
- merb_generators/ruboss_config/templates/html-template/index.template.html
|
|
55
|
+
- merb_generators/ruboss_config/templates/html-template/playerProductInstall.swf
|
|
56
|
+
- merb_generators/ruboss_config/templates/index.html.erb
|
|
57
|
+
- merb_generators/ruboss_config/templates/mainair-app.xml
|
|
58
|
+
- merb_generators/ruboss_config/templates/mainapp.mxml
|
|
59
|
+
- merb_generators/ruboss_config/templates/project.properties
|
|
60
|
+
- merb_generators/ruboss_config/templates/projectair.properties
|
|
61
|
+
- merb_generators/ruboss_config/templates/swfobject.js
|
|
62
|
+
- merb_generators/ruboss_controller/USAGE
|
|
63
|
+
- merb_generators/ruboss_controller/ruboss_controller_generator.rb
|
|
64
|
+
- merb_generators/ruboss_controller/templates/controller.as.erb
|
|
65
|
+
- merb_generators/ruboss_resource_controller/USAGE
|
|
66
|
+
- merb_generators/ruboss_resource_controller/ruboss_resource_controller_generator.rb
|
|
67
|
+
- merb_generators/ruboss_resource_controller/templates/app/controllers/%controller_file_name%.rb
|
|
68
|
+
- merb_generators/ruboss_resource_controller/templates/app/helpers/%controller_file_name%_helper.rb
|
|
69
|
+
- merb_generators/ruboss_scaffold/USAGE
|
|
70
|
+
- merb_generators/ruboss_scaffold/ruboss_scaffold_generator.rb
|
|
71
|
+
- merb_generators/ruboss_scaffold/templates/component.mxml.erb
|
|
72
|
+
- merb_generators/ruboss_scaffold/templates/fixtures.yml.erb
|
|
73
|
+
- merb_generators/ruboss_scaffold/templates/migration.rb.erb
|
|
74
|
+
- merb_generators/ruboss_scaffold/templates/model.as.erb
|
|
75
|
+
- merb_generators/ruboss_scaffold/templates/model.rb.erb
|
|
76
|
+
- merb_generators/ruboss_yaml_scaffold/USAGE
|
|
77
|
+
- merb_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb
|
|
78
|
+
- rails_generators/ruboss_config/USAGE
|
|
79
|
+
- rails_generators/ruboss_config/ruboss_config_generator.rb
|
|
80
|
+
- rails_generators/ruboss_config/templates/actionscript.properties
|
|
81
|
+
- rails_generators/ruboss_config/templates/actionscriptair.properties
|
|
82
|
+
- rails_generators/ruboss_config/templates/expressInstall.swf
|
|
83
|
+
- rails_generators/ruboss_config/templates/flex.properties
|
|
84
|
+
- rails_generators/ruboss_config/templates/html-template/AC_OETags.js
|
|
85
|
+
- rails_generators/ruboss_config/templates/html-template/history/history.css
|
|
86
|
+
- rails_generators/ruboss_config/templates/html-template/history/history.js
|
|
87
|
+
- rails_generators/ruboss_config/templates/html-template/history/historyFrame.html
|
|
88
|
+
- rails_generators/ruboss_config/templates/html-template/index.template.html
|
|
89
|
+
- rails_generators/ruboss_config/templates/html-template/playerProductInstall.swf
|
|
90
|
+
- rails_generators/ruboss_config/templates/index.html.erb
|
|
91
|
+
- rails_generators/ruboss_config/templates/mainair-app.xml
|
|
92
|
+
- rails_generators/ruboss_config/templates/mainapp.mxml
|
|
93
|
+
- rails_generators/ruboss_config/templates/project.properties
|
|
94
|
+
- rails_generators/ruboss_config/templates/projectair.properties
|
|
95
|
+
- rails_generators/ruboss_config/templates/ruboss_tasks.rake
|
|
96
|
+
- rails_generators/ruboss_config/templates/swfobject.js
|
|
97
|
+
- rails_generators/ruboss_controller/USAGE
|
|
98
|
+
- rails_generators/ruboss_controller/ruboss_controller_generator.rb
|
|
99
|
+
- rails_generators/ruboss_controller/templates/controller.as.erb
|
|
100
|
+
- rails_generators/ruboss_scaffold/USAGE
|
|
101
|
+
- rails_generators/ruboss_scaffold/ruboss_scaffold_generator.rb
|
|
102
|
+
- rails_generators/ruboss_scaffold/templates/component.mxml.erb
|
|
103
|
+
- rails_generators/ruboss_scaffold/templates/controller.rb.erb
|
|
104
|
+
- rails_generators/ruboss_scaffold/templates/fixtures.yml.erb
|
|
105
|
+
- rails_generators/ruboss_scaffold/templates/migration.rb.erb
|
|
106
|
+
- rails_generators/ruboss_scaffold/templates/model.as.erb
|
|
107
|
+
- rails_generators/ruboss_scaffold/templates/model.rb.erb
|
|
108
|
+
- rails_generators/ruboss_yaml_scaffold/USAGE
|
|
109
|
+
- rails_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb
|
|
110
|
+
- rcl-1.0.txt
|
|
111
|
+
- script/console
|
|
112
|
+
- script/destroy
|
|
113
|
+
- script/generate
|
|
114
|
+
- script/txt2html
|
|
115
|
+
- setup.rb
|
|
116
|
+
- tasks/deployment.rake
|
|
117
|
+
- tasks/environment.rake
|
|
118
|
+
- tasks/website.rake
|
|
119
|
+
- test/active_foo_test.rb
|
|
120
|
+
- test/test_generator_helper.rb
|
|
121
|
+
- test/test_helper.rb
|
|
122
|
+
- test/test_ruboss_config_generator.rb
|
|
123
|
+
- test/test_ruboss_controller_generator.rb
|
|
124
|
+
- test/test_ruboss_on_ruby.rb
|
|
125
|
+
- test/test_ruboss_scaffold_generator.rb
|
|
126
|
+
- test/test_ruboss_yaml_scaffold_generator.rb
|
|
127
|
+
- website/index.html
|
|
128
|
+
- website/index.txt
|
|
129
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
|
130
|
+
- website/stylesheets/screen.css
|
|
131
|
+
- website/template.html.erb
|
|
132
|
+
has_rdoc: true
|
|
133
|
+
homepage: http://ruboss_on_ruby.rubyforge.org
|
|
134
|
+
post_install_message:
|
|
135
|
+
rdoc_options:
|
|
136
|
+
- --main
|
|
137
|
+
- README.txt
|
|
138
|
+
require_paths:
|
|
139
|
+
- lib
|
|
140
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: "0"
|
|
145
|
+
version:
|
|
146
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
147
|
+
requirements:
|
|
148
|
+
- - ">="
|
|
149
|
+
- !ruby/object:Gem::Version
|
|
150
|
+
version: "0"
|
|
151
|
+
version:
|
|
152
|
+
requirements: []
|
|
153
|
+
|
|
154
|
+
rubyforge_project: rubossonruby
|
|
155
|
+
rubygems_version: 1.2.0
|
|
156
|
+
signing_key:
|
|
157
|
+
specification_version: 2
|
|
158
|
+
summary: Ruboss Framework Integration Support for Rails 2.+ and Merb 0.9.3+
|
|
159
|
+
test_files:
|
|
160
|
+
- test/test_generator_helper.rb
|
|
161
|
+
- test/test_helper.rb
|
|
162
|
+
- test/test_ruboss_config_generator.rb
|
|
163
|
+
- test/test_ruboss_controller_generator.rb
|
|
164
|
+
- test/test_ruboss_on_ruby.rb
|
|
165
|
+
- test/test_ruboss_scaffold_generator.rb
|
|
166
|
+
- test/test_ruboss_yaml_scaffold_generator.rb
|