excel-rb-appscript 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/excel-rb-appscript.gemspec +1 -1
- data/lib/Excel/app.rb +1 -1
- metadata +3 -3
data/excel-rb-appscript.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
|
|
11
11
|
# gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
12
12
|
gem.name = "excel-rb-appscript"
|
13
13
|
gem.require_paths = ["lib"]
|
14
|
-
gem.version = "0.0.
|
14
|
+
gem.version = "0.0.6"
|
15
15
|
|
16
16
|
|
17
17
|
gem.add_runtime_dependency "rb-appscript"
|
data/lib/Excel/app.rb
CHANGED
@@ -32,7 +32,7 @@ module Excel
|
|
32
32
|
|
33
33
|
def self.workbooks_paths
|
34
34
|
return [] if app_object.workbooks.get == :missing_value
|
35
|
-
app_object.workbooks.get.collect {|wb| "#{wb.path.get}
|
35
|
+
app_object.workbooks.get.collect {|wb| "#{MacTypes::FileURL.hfs_path(wb.path.get).path}/#{wb.name.get}" }
|
36
36
|
end
|
37
37
|
|
38
38
|
def self.workbook wb
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: excel-rb-appscript
|
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: 2012-06-
|
12
|
+
date: 2012-06-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rb-appscript
|
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
version: '0'
|
62
62
|
requirements: []
|
63
63
|
rubyforge_project:
|
64
|
-
rubygems_version: 1.8.
|
64
|
+
rubygems_version: 1.8.24
|
65
65
|
signing_key:
|
66
66
|
specification_version: 3
|
67
67
|
summary: with basic excel dictionary
|