ruboto 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +19 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +21 -0
- data/README.md +293 -0
- data/Rakefile +114 -0
- data/assets/Rakefile +386 -0
- data/assets/res/drawable-hdpi/icon.png +0 -0
- data/assets/res/drawable-ldpi/icon.png +0 -0
- data/assets/res/drawable-mdpi/icon.png +0 -0
- data/assets/res/layout/get_ruboto_core.xml +25 -0
- data/assets/samples/sample_activity.rb +21 -0
- data/assets/samples/sample_activity_test.rb +21 -0
- data/assets/samples/sample_broadcast_receiver.rb +6 -0
- data/assets/samples/sample_broadcast_receiver_test.rb +1 -0
- data/assets/samples/sample_service.rb +14 -0
- data/assets/samples/sample_service_test.rb +1 -0
- data/assets/src/InheritingActivity.java +195 -0
- data/assets/src/InheritingBroadcastReceiver.java +27 -0
- data/assets/src/InheritingClass.java +19 -0
- data/assets/src/InheritingService.java +9 -0
- data/assets/src/RubotoActivity.java +111 -0
- data/assets/src/RubotoBroadcastReceiver.java +51 -0
- data/assets/src/RubotoService.java +61 -0
- data/assets/src/org/ruboto/RubotoDialog.java +11 -0
- data/assets/src/org/ruboto/Script.java +545 -0
- data/assets/src/org/ruboto/test/ActivityTest.java +63 -0
- data/assets/src/org/ruboto/test/InstrumentationTestRunner.java +124 -0
- data/assets/src/ruboto.rb +621 -0
- data/assets/test/assets/scripts/test_helper.rb +13 -0
- data/bin/ruboto +5 -0
- data/lib/java_class_gen/InheritingClass.java.erb +10 -0
- data/lib/java_class_gen/android_api.xml +1 -0
- data/lib/ruboto.rb +16 -0
- data/lib/ruboto/api.rb +21 -0
- data/lib/ruboto/commands/base.rb +392 -0
- data/lib/ruboto/core_ext/array.rb +6 -0
- data/lib/ruboto/core_ext/object.rb +10 -0
- data/lib/ruboto/util/asset_copier.rb +27 -0
- data/lib/ruboto/util/build.rb +201 -0
- data/lib/ruboto/util/code_formatting.rb +22 -0
- data/lib/ruboto/util/log_action.rb +20 -0
- data/lib/ruboto/util/main_fix.rb +13 -0
- data/lib/ruboto/util/objectspace.rb +8 -0
- data/lib/ruboto/util/scan_in_api.rb +40 -0
- data/lib/ruboto/util/update.rb +420 -0
- data/lib/ruboto/util/verify.rb +87 -0
- data/lib/ruboto/util/xml_element.rb +200 -0
- data/lib/ruboto/version.rb +3 -0
- data/test/activity/image_button_activity.rb +21 -0
- data/test/activity/image_button_activity_test.rb +21 -0
- data/test/activity/image_button_and_button_activity.rb +24 -0
- data/test/activity/image_button_and_button_activity_test.rb +27 -0
- data/test/activity/option_menu_activity.rb +21 -0
- data/test/activity/option_menu_activity_test.rb +20 -0
- data/test/activity/stack_activity.rb +21 -0
- data/test/activity/stack_activity_test.rb +23 -0
- data/test/app_test_methods.rb +41 -0
- data/test/minimal_app_test.rb +23 -0
- data/test/rake_test.rb +40 -0
- data/test/ruboto_gen_test.rb +32 -0
- data/test/ruboto_gen_with_psych_test.rb +16 -0
- data/test/ruboto_update_test.rb +5 -0
- data/test/ruboto_update_with_psych_test.rb +18 -0
- data/test/service_test.rb +49 -0
- data/test/test_helper.rb +177 -0
- data/test/update_test_methods.rb +33 -0
- metadata +157 -0
metadata
ADDED
@@ -0,0 +1,157 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruboto
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 15
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 5
|
9
|
+
- 2
|
10
|
+
version: 0.5.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Daniel Jackoway
|
14
|
+
- Charles Nutter
|
15
|
+
- Scott Moyer
|
16
|
+
- Uwe Kubosch
|
17
|
+
autorequire:
|
18
|
+
bindir: bin
|
19
|
+
cert_chain: []
|
20
|
+
|
21
|
+
date: 2011-12-24 00:00:00 Z
|
22
|
+
dependencies:
|
23
|
+
- !ruby/object:Gem::Dependency
|
24
|
+
name: main
|
25
|
+
prerelease: false
|
26
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ~>
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
hash: 21
|
32
|
+
segments:
|
33
|
+
- 4
|
34
|
+
- 7
|
35
|
+
version: "4.7"
|
36
|
+
- - ">="
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
hash: 39
|
39
|
+
segments:
|
40
|
+
- 4
|
41
|
+
- 7
|
42
|
+
- 2
|
43
|
+
version: 4.7.2
|
44
|
+
type: :runtime
|
45
|
+
version_requirements: *id001
|
46
|
+
description: |-
|
47
|
+
Ruboto - JRuby on Android
|
48
|
+
A generator and framework for developing full stand-alone apps for Android usign the Ruby language and libraries.
|
49
|
+
email: ruboto@googlegroups.com
|
50
|
+
executables:
|
51
|
+
- ruboto
|
52
|
+
extensions: []
|
53
|
+
|
54
|
+
extra_rdoc_files: []
|
55
|
+
|
56
|
+
files:
|
57
|
+
- COPYING
|
58
|
+
- Gemfile
|
59
|
+
- Gemfile.lock
|
60
|
+
- Rakefile
|
61
|
+
- README.md
|
62
|
+
- assets/Rakefile
|
63
|
+
- assets/res/drawable-hdpi/icon.png
|
64
|
+
- assets/res/drawable-ldpi/icon.png
|
65
|
+
- assets/res/drawable-mdpi/icon.png
|
66
|
+
- assets/res/layout/get_ruboto_core.xml
|
67
|
+
- assets/samples/sample_activity.rb
|
68
|
+
- assets/samples/sample_activity_test.rb
|
69
|
+
- assets/samples/sample_broadcast_receiver.rb
|
70
|
+
- assets/samples/sample_broadcast_receiver_test.rb
|
71
|
+
- assets/samples/sample_service.rb
|
72
|
+
- assets/samples/sample_service_test.rb
|
73
|
+
- assets/src/InheritingActivity.java
|
74
|
+
- assets/src/InheritingBroadcastReceiver.java
|
75
|
+
- assets/src/InheritingClass.java
|
76
|
+
- assets/src/InheritingService.java
|
77
|
+
- assets/src/org/ruboto/RubotoDialog.java
|
78
|
+
- assets/src/org/ruboto/Script.java
|
79
|
+
- assets/src/org/ruboto/test/ActivityTest.java
|
80
|
+
- assets/src/org/ruboto/test/InstrumentationTestRunner.java
|
81
|
+
- assets/src/ruboto.rb
|
82
|
+
- assets/src/RubotoActivity.java
|
83
|
+
- assets/src/RubotoBroadcastReceiver.java
|
84
|
+
- assets/src/RubotoService.java
|
85
|
+
- assets/test/assets/scripts/test_helper.rb
|
86
|
+
- bin/ruboto
|
87
|
+
- lib/java_class_gen/android_api.xml
|
88
|
+
- lib/java_class_gen/InheritingClass.java.erb
|
89
|
+
- lib/ruboto/api.rb
|
90
|
+
- lib/ruboto/commands/base.rb
|
91
|
+
- lib/ruboto/core_ext/array.rb
|
92
|
+
- lib/ruboto/core_ext/object.rb
|
93
|
+
- lib/ruboto/util/asset_copier.rb
|
94
|
+
- lib/ruboto/util/build.rb
|
95
|
+
- lib/ruboto/util/code_formatting.rb
|
96
|
+
- lib/ruboto/util/log_action.rb
|
97
|
+
- lib/ruboto/util/main_fix.rb
|
98
|
+
- lib/ruboto/util/objectspace.rb
|
99
|
+
- lib/ruboto/util/scan_in_api.rb
|
100
|
+
- lib/ruboto/util/update.rb
|
101
|
+
- lib/ruboto/util/verify.rb
|
102
|
+
- lib/ruboto/util/xml_element.rb
|
103
|
+
- lib/ruboto/version.rb
|
104
|
+
- lib/ruboto.rb
|
105
|
+
- test/activity/image_button_activity.rb
|
106
|
+
- test/activity/image_button_activity_test.rb
|
107
|
+
- test/activity/image_button_and_button_activity.rb
|
108
|
+
- test/activity/image_button_and_button_activity_test.rb
|
109
|
+
- test/activity/option_menu_activity.rb
|
110
|
+
- test/activity/option_menu_activity_test.rb
|
111
|
+
- test/activity/stack_activity.rb
|
112
|
+
- test/activity/stack_activity_test.rb
|
113
|
+
- test/app_test_methods.rb
|
114
|
+
- test/minimal_app_test.rb
|
115
|
+
- test/rake_test.rb
|
116
|
+
- test/ruboto_gen_test.rb
|
117
|
+
- test/ruboto_gen_with_psych_test.rb
|
118
|
+
- test/ruboto_update_test.rb
|
119
|
+
- test/ruboto_update_with_psych_test.rb
|
120
|
+
- test/service_test.rb
|
121
|
+
- test/test_helper.rb
|
122
|
+
- test/update_test_methods.rb
|
123
|
+
homepage: http://ruboto.org/
|
124
|
+
licenses: []
|
125
|
+
|
126
|
+
post_install_message:
|
127
|
+
rdoc_options: []
|
128
|
+
|
129
|
+
require_paths:
|
130
|
+
- lib
|
131
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
132
|
+
none: false
|
133
|
+
requirements:
|
134
|
+
- - ">="
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
hash: 3
|
137
|
+
segments:
|
138
|
+
- 0
|
139
|
+
version: "0"
|
140
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
141
|
+
none: false
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
hash: 3
|
146
|
+
segments:
|
147
|
+
- 0
|
148
|
+
version: "0"
|
149
|
+
requirements: []
|
150
|
+
|
151
|
+
rubyforge_project: ruboto/ruboto
|
152
|
+
rubygems_version: 1.8.8
|
153
|
+
signing_key:
|
154
|
+
specification_version: 3
|
155
|
+
summary: A platform for developing apps using JRuby on Android.
|
156
|
+
test_files: []
|
157
|
+
|