ruboss4ruby 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +2 -2
- data/app_generators/ruboss_app/ruboss_app_generator.rb +8 -8
- data/app_generators/ruboss_app/templates/default_tasks.rake +1 -1
- data/app_generators/ruboss_app/templates/mainair-app.xml +1 -1
- data/generators/ruboss_controller/ruboss_controller_generator.rb +1 -0
- data/lib/ruboss4ruby.rb +2 -2
- data/rails_generators/ruboss_config/ruboss_config_generator.rb +13 -13
- data/rails_generators/ruboss_config/templates/mainair-app.xml +1 -1
- data/rails_generators/ruboss_config/templates/ruboss_tasks.rake +1 -0
- data/rails_generators/ruboss_controller/ruboss_controller_generator.rb +0 -5
- data/rails_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb +0 -5
- data/ruboss4ruby.gemspec +2 -2
- metadata +1 -1
data/History.txt
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
== 1.1.
|
1
|
+
== 1.1.1 / 2009-01-09
|
2
2
|
|
3
|
-
*
|
3
|
+
* Bug fixing code generation templates so that AIR projects compile properly with Flex SDK 3.2.0
|
@@ -83,12 +83,12 @@ class RubossAppGenerator < RubiGen::Base
|
|
83
83
|
end
|
84
84
|
|
85
85
|
protected
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
86
|
+
def add_options!(opt)
|
87
|
+
opt.separator ''
|
88
|
+
opt.separator 'Options:'
|
89
|
+
opt.on("-a", "--air", "Configure AIR project instead of Flex. Flex is default.",
|
90
|
+
"Default: false") { |v| options[:air_config] = v }
|
91
|
+
opt.on("--gae", "Generate Google App Engine Python classes in addition to Ruboss Flex resources.",
|
92
|
+
"Default: false") { |v| options[:gae] = v }
|
93
|
+
end
|
94
94
|
end
|
data/lib/ruboss4ruby.rb
CHANGED
@@ -98,18 +98,18 @@ class RubossConfigGenerator < Rails::Generator::Base
|
|
98
98
|
end
|
99
99
|
|
100
100
|
protected
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
101
|
+
def add_options!(opt)
|
102
|
+
opt.separator ''
|
103
|
+
opt.separator 'Options:'
|
104
|
+
opt.on("-m", "--main-only", "Only generate the main Flex/AIR application file.",
|
105
|
+
"Default: false") { |v| options[:main_only] = v }
|
106
|
+
opt.on("-a", "--air", "Configure AIR project instead of Flex. Flex is default.",
|
107
|
+
"Default: false") { |v| options[:air_config] = v }
|
108
|
+
opt.on("-s", "--skip-framework", "Don't fetch the latest framework binary. You'll have to link/build the framework yourself.",
|
109
|
+
"Default: false") { |v| options[:skip_framework] = v }
|
110
|
+
end
|
111
111
|
|
112
|
-
|
113
|
-
|
114
|
-
|
112
|
+
def banner
|
113
|
+
"Usage: #{$0} #{spec.name}"
|
114
|
+
end
|
115
115
|
end
|
data/ruboss4ruby.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{ruboss4ruby}
|
5
|
-
s.version = "1.1.
|
5
|
+
s.version = "1.1.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Dima Berastau"]
|
9
|
-
s.date = %q{2009-01-
|
9
|
+
s.date = %q{2009-01-09}
|
10
10
|
s.default_executable = %q{ruboss-gen}
|
11
11
|
s.description = %q{The Ruboss Framework brings the design principles and productivity of Rails to Flex development, and makes integration with RESTful APIs as simple as possible. Here's some of the things you can do: * *Create* a complete _Adobe_ _Flex_ or _AIR_ application in less than 5 minutes. Use our lightweight Ruby-based code generation toolkit to create a fully functional CRUD application. Simply do: sudo gem install ruboss4ruby And then run: ruboss-gen -h * *Integrate* with _Ruby_ _On_ _Rails_, _Merb_ or _Sinatra_ applications that use _ActiveRecord_, _DataMapper_, _CouchRest_, _ActiveCouch_, etc. * *Communicate* between your Flex/AIR rich client and service providers using either _XML_ or _JSON_. * *Persist* your data directly in Adobe AIR's _SQLite_ database or _CouchDB_ without any additional infrastructure or intermediate servers. * *Deploy* your Ruboss application on the Google App Engine and use Google DataStore for persistence.}
|
12
12
|
s.email = %q{dima@ruboss.com}
|