ruboto 0.11.0 → 0.12.0.rc.0
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/Gemfile.lock +1 -1
- data/README.md +7 -5
- data/Rakefile +3 -4
- data/assets/rakelib/ruboto.rake +138 -87
- data/assets/samples/sample_broadcast_receiver.rb +1 -1
- data/assets/src/InheritingActivity.java +0 -6
- data/assets/src/RubotoActivity.java +4 -1
- data/assets/src/RubotoBroadcastReceiver.java +2 -11
- data/assets/src/RubotoService.java +6 -52
- data/assets/src/org/ruboto/EntryPointActivity.java +276 -36
- data/assets/src/org/ruboto/JRubyAdapter.java +5 -152
- data/assets/src/org/ruboto/Script.java +1 -1
- data/assets/src/org/ruboto/ScriptLoader.java +26 -44
- data/assets/src/org/ruboto/test/InstrumentationTestRunner.java +4 -21
- data/bin/ruboto +0 -6
- data/lib/ruboto/commands/base.rb +58 -48
- data/lib/ruboto/sdk_locations.rb +23 -0
- data/lib/ruboto/sdk_versions.rb +1 -19
- data/lib/ruboto/util/build.rb +32 -32
- data/lib/ruboto/util/setup.rb +240 -0
- data/lib/ruboto/util/update.rb +12 -25
- data/lib/ruboto/util/verify.rb +7 -4
- data/lib/ruboto/util/xml_element.rb +62 -76
- data/lib/ruboto/version.rb +1 -1
- data/test/activity/image_button_activity_test.rb +2 -2
- data/test/activity/image_button_and_button_activity_test.rb +2 -2
- data/test/activity/json_activity.rb +1 -1
- data/test/activity/navigation_activity.rb +12 -12
- data/test/activity/navigation_activity_test.rb +7 -7
- data/test/activity/option_menu_activity.rb +0 -1
- data/test/activity/option_menu_activity_test.rb +2 -2
- data/test/activity/stack_activity_test.rb +10 -20
- data/test/app_test_methods.rb +0 -4
- data/test/broadcast_receiver_test.rb +16 -6
- data/test/minimal_app_test.rb +4 -12
- data/test/rake_test.rb +37 -23
- data/test/ruboto_gen_test.rb +12 -15
- data/test/sqldroid_test.rb +3 -6
- data/test/test_helper.rb +2 -0
- data/test/update_test_methods.rb +9 -9
- metadata +7 -11
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruboto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.12.0.rc.0
|
5
|
+
prerelease: 7
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Daniel Jackoway
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2013-
|
15
|
+
date: 2013-05-07 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: main
|
@@ -124,6 +124,7 @@ files:
|
|
124
124
|
- lib/ruboto/core_ext/object.rb
|
125
125
|
- lib/ruboto/core_ext/rexml.rb
|
126
126
|
- lib/ruboto/description.rb
|
127
|
+
- lib/ruboto/sdk_locations.rb
|
127
128
|
- lib/ruboto/sdk_versions.rb
|
128
129
|
- lib/ruboto/util/asset_copier.rb
|
129
130
|
- lib/ruboto/util/build.rb
|
@@ -132,6 +133,7 @@ files:
|
|
132
133
|
- lib/ruboto/util/main_fix.rb
|
133
134
|
- lib/ruboto/util/objectspace.rb
|
134
135
|
- lib/ruboto/util/scan_in_api.rb
|
136
|
+
- lib/ruboto/util/setup.rb
|
135
137
|
- lib/ruboto/util/update.rb
|
136
138
|
- lib/ruboto/util/verify.rb
|
137
139
|
- lib/ruboto/util/xml_element.rb
|
@@ -195,18 +197,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
195
197
|
- - ! '>='
|
196
198
|
- !ruby/object:Gem::Version
|
197
199
|
version: '0'
|
198
|
-
segments:
|
199
|
-
- 0
|
200
|
-
hash: 732742003791157585
|
201
200
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
202
201
|
none: false
|
203
202
|
requirements:
|
204
|
-
- - ! '
|
203
|
+
- - ! '>'
|
205
204
|
- !ruby/object:Gem::Version
|
206
|
-
version:
|
207
|
-
segments:
|
208
|
-
- 0
|
209
|
-
hash: 732742003791157585
|
205
|
+
version: 1.3.1
|
210
206
|
requirements: []
|
211
207
|
rubyforge_project: ruboto/ruboto
|
212
208
|
rubygems_version: 1.8.25
|