alloy 0.0.1 → 0.0.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/CHANGELOG.md +12 -0
- data/lib/alloy/config.rb +2 -2
- data/lib/alloy/version.rb +1 -1
- metadata +5 -4
data/CHANGELOG.md
ADDED
data/lib/alloy/config.rb
CHANGED
|
@@ -49,7 +49,7 @@ module Alloy
|
|
|
49
49
|
#
|
|
50
50
|
# Returns the path String.
|
|
51
51
|
def titanium_sdk_path
|
|
52
|
-
@json['titanium']['sdk_path']
|
|
52
|
+
File.expand_path(@json['titanium']['sdk_path'])
|
|
53
53
|
end
|
|
54
54
|
|
|
55
55
|
# Public: Returns Titanium Mobile SDK version string.
|
|
@@ -85,7 +85,7 @@ module Alloy
|
|
|
85
85
|
#
|
|
86
86
|
# Returns the path String.
|
|
87
87
|
def android_sdk_path
|
|
88
|
-
@json['android']['sdk_path']
|
|
88
|
+
File.expand_path(@json['android']['sdk_path'])
|
|
89
89
|
end
|
|
90
90
|
|
|
91
91
|
# Public: Returns AVD ID string.
|
data/lib/alloy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alloy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
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: 2012-06-
|
|
12
|
+
date: 2012-06-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -148,6 +148,7 @@ extensions: []
|
|
|
148
148
|
extra_rdoc_files: []
|
|
149
149
|
files:
|
|
150
150
|
- .gitignore
|
|
151
|
+
- CHANGELOG.md
|
|
151
152
|
- Gemfile
|
|
152
153
|
- LICENSE
|
|
153
154
|
- README.md
|
|
@@ -180,7 +181,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
180
181
|
version: '0'
|
|
181
182
|
segments:
|
|
182
183
|
- 0
|
|
183
|
-
hash:
|
|
184
|
+
hash: -3928626773684582883
|
|
184
185
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
185
186
|
none: false
|
|
186
187
|
requirements:
|
|
@@ -189,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
189
190
|
version: '0'
|
|
190
191
|
segments:
|
|
191
192
|
- 0
|
|
192
|
-
hash:
|
|
193
|
+
hash: -3928626773684582883
|
|
193
194
|
requirements: []
|
|
194
195
|
rubyforge_project:
|
|
195
196
|
rubygems_version: 1.8.23
|