rhodes 3.0.0.beta.1 → 3.0.0.beta.2
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/Manifest.txt +6389 -0
- data/platform/wp7/build/wp.rake +7 -2
- data/rhodes.gemspec +1 -1
- metadata +4 -3
data/platform/wp7/build/wp.rake
CHANGED
@@ -212,7 +212,7 @@ def get_app_log()
|
|
212
212
|
end
|
213
213
|
|
214
214
|
def run_rho_log_server()
|
215
|
-
system("START rake run:wp:rhologserver")
|
215
|
+
system("START rake run:wp:rhologserver[#{$app_path}]")
|
216
216
|
end
|
217
217
|
|
218
218
|
namespace "device" do
|
@@ -334,7 +334,12 @@ namespace "run" do
|
|
334
334
|
puts "log_file=" + getLogPath
|
335
335
|
end
|
336
336
|
|
337
|
-
task :rhologserver
|
337
|
+
task :rhologserver, :app_path do |t, args|
|
338
|
+
puts "Args were: #{args}"
|
339
|
+
$app_path = args[:app_path]
|
340
|
+
|
341
|
+
Rake::Task["config:wp"].invoke
|
342
|
+
|
338
343
|
$rhologhostaddr = Jake.localip()
|
339
344
|
$rhologhostport = 0
|
340
345
|
$rhologserver = WEBrick::HTTPServer.new :BindAddress => $rhologhostaddr, :Port => $rhologhostport
|
data/rhodes.gemspec
CHANGED
@@ -3,7 +3,7 @@ require "lib/rhodes.rb"
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = %q{rhodes}
|
6
|
-
s.version = "3.0.0.beta.
|
6
|
+
s.version = "3.0.0.beta.2"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
9
9
|
s.authors = ["Rhomobile"]
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rhodes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 62196423
|
5
5
|
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 0
|
9
9
|
- 0
|
10
10
|
- beta
|
11
|
-
-
|
12
|
-
version: 3.0.0.beta.
|
11
|
+
- 2
|
12
|
+
version: 3.0.0.beta.2
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Rhomobile
|
@@ -1066,6 +1066,7 @@ files:
|
|
1066
1066
|
- lib/test/rho_stubs.rb
|
1067
1067
|
- lib/test/syncdb.sqlite
|
1068
1068
|
- LICENSE
|
1069
|
+
- Manifest.txt
|
1069
1070
|
- platform/android/build/android.rake
|
1070
1071
|
- platform/android/build/androidcommon.rb
|
1071
1072
|
- platform/android/build/libcurl_build.files
|