droiuby 0.0.4 → 0.0.6
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/bin/drby +6 -0
- metadata +8 -4
data/bin/drby
CHANGED
|
@@ -27,6 +27,12 @@ case command
|
|
|
27
27
|
end
|
|
28
28
|
project = Project.new
|
|
29
29
|
project.package(project_name)
|
|
30
|
+
when 'framework'
|
|
31
|
+
if ARGV[1] == 'update'
|
|
32
|
+
project = Project.new
|
|
33
|
+
project.framework(nil, ARGV[2])
|
|
34
|
+
exit(1)
|
|
35
|
+
end
|
|
30
36
|
when 'gopack'
|
|
31
37
|
project_name = nil
|
|
32
38
|
if ARGV.size == 3
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: droiuby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-11-
|
|
12
|
+
date: 2013-11-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -127,16 +127,20 @@ licenses:
|
|
|
127
127
|
- MIT
|
|
128
128
|
post_install_message: ! 'Droiuby Gem Installed!
|
|
129
129
|
|
|
130
|
+
|
|
130
131
|
Post Install work:
|
|
131
132
|
|
|
132
|
-
|
|
133
|
+
|
|
134
|
+
1.Go install the droiuby development app on your phone here: https://play.google.com/store/apps/details?id=com.droiuby.application
|
|
133
135
|
|
|
134
136
|
2. Download the android sdk (http://developer.android.com/sdk/index.html)
|
|
135
137
|
|
|
136
138
|
3. Setup your PATH to include <sdk directory>/sdk/platform-tools (make sure adb
|
|
137
139
|
works)
|
|
138
140
|
|
|
139
|
-
4. Attach your android phone to your PC via USB
|
|
141
|
+
4. Attach your android phone to your PC via USB
|
|
142
|
+
|
|
143
|
+
5. visit https://github.com/jedld/droiuby-doo for the quick start tutorial
|
|
140
144
|
|
|
141
145
|
'
|
|
142
146
|
rdoc_options: []
|