rhodes 3.2.0.beta.9 → 3.2.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/Manifest.txt CHANGED
@@ -44,6 +44,7 @@ doc/tutorial.txt
44
44
  doc/ui.txt
45
45
  ext/extconf.rb
46
46
  installer/EnvVarUpdate.nsh
47
+ installer/howtobuild.txt
47
48
  installer/icon.ico
48
49
  installer/instant-rhodes.nsi
49
50
  installer/jake.rb
@@ -4736,7 +4737,7 @@ res/icons/rhosim.png
4736
4737
  res/icons/rhosim.psd
4737
4738
  rhobuild.yml.example
4738
4739
  rhodes.gemspec
4739
- rhomobile-debug-1.0.4.gem
4740
+ rhomobile-debug-1.0.5.gem
4740
4741
  rhomobile-debug.gemspec
4741
4742
  spec/framework_spec/app/application.rb
4742
4743
  spec/framework_spec/app/index.erb
@@ -0,0 +1,78 @@
1
+ How to build in first time:
2
+
3
+ *** Eclipse product ***
4
+
5
+ 1. Download Eclipse 3.6 for RPC developer config
6
+
7
+ 2. clone Rhostudio repositary (git clone git@github.com:rhomobile/rhostudio.git)
8
+
9
+ 3. Import RhoStudio project and Rhostudio feature project into workspace
10
+
11
+ 3.1 Goto File/Import menu item
12
+ 3.2 Select General/Existing Project into Workspace
13
+ 3.3 Select repository directory
14
+ 3.4 Finish
15
+
16
+ 3.5 Import
17
+
18
+ 4. After import RhoStudio project you should see RhoStudio product item in project tree
19
+
20
+ 5. Export product
21
+
22
+ 5.1 Open product item
23
+ 5.2 press export button in toolbar
24
+ 5.3 Uncheck 'Generate metadata repositary' item
25
+ 5.4 Place destination directory
26
+
27
+ 6. Copy product files in directory with eclipse assambly
28
+
29
+ *** Windows installer ***
30
+
31
+ Need software:
32
+
33
+ NSIS installer (link - http://rhostudio.s3.amazonaws.com/instant/work/RhoStudioDMG.dmg)
34
+ NSIS large string path (link - http://downloads.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-strlen_8192.zip?r=http%3A%2F%2Fnsis.sourceforge.net%2FSpecial_Builds&ts=1319209736&use_mirror=citylan)
35
+ Installer package (link - http://rhostudio.s3.amazonaws.com/instant/work/installer-win.rar)
36
+
37
+ For windows maked rake script for build installer
38
+
39
+ settings:
40
+
41
+ $majorVer, $minorVer, $miniVer, $betaVer
42
+ Version number. $betaVer use only in beta and user configurations.
43
+
44
+ $isRhodesBeta, $isConnBeta, $isAdapterBeta
45
+ Settings for configure 'user' task. If parameter is true then download beta version of gem.
46
+
47
+ $nsisPath
48
+ Path to NSIS compiler (with file name)
49
+
50
+ $rubyPath
51
+ Path to ruby installation directory
52
+
53
+ $rubyInstallPath
54
+ Path to ruby directory what use in ianstaller
55
+
56
+ commands:
57
+
58
+ rake installer:user
59
+ download and install versions rhodes, rhoconnect, rhoconnect-adapters from beta flags in rake script
60
+ after it, build installer with name 'RhoStudioInstaller#.#.#.beta#.exe'
61
+
62
+ rake installer:beta
63
+ download and install latest beta versions rhodes, rhoconnect, rhoconnect-adapters
64
+ after it, build installer with name 'RhoStudioInstaller#.#.#.beta#.exe'
65
+
66
+ rake installer:release
67
+ download and install latest release versions rhodes, rhoconnect, rhoconnect-adapters
68
+ after it, build installer with name 'RhoStudioInstaller#.#.#.exe'
69
+
70
+ *** OSX installer ***
71
+
72
+ 1. Download base DMG image (link - http://rhostudio.s3.amazonaws.com/instant/work/RhoStudioDMG.dmg)
73
+
74
+ 2. Make new version of RhoStudio plugin
75
+
76
+ 3. Copy new version to eclipse folder in image (old version should be deleted)
77
+
78
+ 4. Open image in disk utility and convert to 'read only' image with compressed content
@@ -204,7 +204,7 @@ Section "Ruby, Rubygems, Rhodes, Rhoconnect and adapters" rubySection
204
204
  Call EnvVarUpdate
205
205
  Pop $R0
206
206
 
207
- ExecWait "$INSTDIR\ruby\bin\rake.bat dtach:install"
207
+ #ExecWait "$INSTDIR\ruby\bin\rake.bat dtach:install"
208
208
 
209
209
  SectionEnd
210
210
 
@@ -1,3 +1,6 @@
1
+ ## 1.0.5
2
+ * Unnecessary warnings removed from application log
3
+
1
4
  ## 1.0.4
2
5
  * Debugger low level messages excluded from application log
3
6
 
@@ -82,7 +82,7 @@ def get_variables(scope)
82
82
  vars = eval(prefix + cmd, $_binding)
83
83
  $_s.write("VSTART:#{vartype}\n")
84
84
  vars.each do |v|
85
- if v !~ /^\$(=|KCODE)$/
85
+ if v !~ /^\$(=|KCODE|-K)$/
86
86
  begin
87
87
  result = eval(v.to_s, $_binding).inspect
88
88
  rescue Exception => exc
Binary file
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "rhomobile-debug"
5
- s.version = "1.0.4"
5
+ s.version = "1.0.5"
6
6
  s.authors = ["Rhomobile"]
7
7
  s.date = Time.now.strftime('%Y-%m-%d')
8
8
  s.description = %q{Rhomobile debugger extension}
data/version CHANGED
@@ -1 +1 @@
1
- 3.2.0.beta.9
1
+ 3.2.0
metadata CHANGED
@@ -1,15 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhodes
3
3
  version: !ruby/object:Gem::Version
4
- hash: 62196465
5
- prerelease: true
4
+ hash: 15
5
+ prerelease: false
6
6
  segments:
7
7
  - 3
8
8
  - 2
9
9
  - 0
10
- - beta
11
- - 9
12
- version: 3.2.0.beta.9
10
+ version: 3.2.0
13
11
  platform: ruby
14
12
  authors:
15
13
  - Rhomobile
@@ -17,7 +15,7 @@ autorequire:
17
15
  bindir: bin
18
16
  cert_chain: []
19
17
 
20
- date: 2011-10-20 00:00:00 -07:00
18
+ date: 2011-10-21 00:00:00 -07:00
21
19
  default_executable:
22
20
  dependencies:
23
21
  - !ruby/object:Gem::Dependency
@@ -161,6 +159,7 @@ files:
161
159
  - doc/ui.txt
162
160
  - ext/extconf.rb
163
161
  - installer/EnvVarUpdate.nsh
162
+ - installer/howtobuild.txt
164
163
  - installer/icon.ico
165
164
  - installer/instant-rhodes.nsi
166
165
  - installer/jake.rb
@@ -4853,7 +4852,7 @@ files:
4853
4852
  - res/icons/rhosim.psd
4854
4853
  - rhobuild.yml.example
4855
4854
  - rhodes.gemspec
4856
- - rhomobile-debug-1.0.4.gem
4855
+ - rhomobile-debug-1.0.5.gem
4857
4856
  - rhomobile-debug.gemspec
4858
4857
  - spec/framework_spec/app/application.rb
4859
4858
  - spec/framework_spec/app/index.erb
Binary file