pasco 1.1.0 → 1.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/VERSION +1 -1
- data/lib/cygwin1.dll +0 -0
- data/lib/pasco +0 -0
- data/lib/pasco.exe +0 -0
- data/lib/pasco.rb +3 -3
- data/pasco.gemspec +4 -1
- metadata +4 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.2.0
|
data/lib/cygwin1.dll
ADDED
|
Binary file
|
data/lib/pasco
ADDED
|
Binary file
|
data/lib/pasco.exe
ADDED
|
Binary file
|
data/lib/pasco.rb
CHANGED
|
@@ -13,12 +13,12 @@ def initialize(url="",modified_time="",acess_time="",file_name="",directory="",h
|
|
|
13
13
|
|
|
14
14
|
def self.get_history(file_name)
|
|
15
15
|
@ie_histories =[]
|
|
16
|
-
gem_path = Gem.dir+"/gems/pasco"
|
|
16
|
+
# gem_path = Gem.dir+"/gems/pasco-#{}"
|
|
17
17
|
if !file_name.nil? && File.extname(file_name) == ".dat"
|
|
18
18
|
if RUBY_PLATFORM=~ /linux/ || RUBY_PLATFORM =~ /darwin/
|
|
19
|
-
result
|
|
19
|
+
result =`pasco "#{file_name}"`
|
|
20
20
|
else #FOR Windows Ihave Not tested yet
|
|
21
|
-
result
|
|
21
|
+
result=`pasco.exe "#{file_name}"`
|
|
22
22
|
end
|
|
23
23
|
@ie_histories = self.process_history(result)
|
|
24
24
|
else
|
data/pasco.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{pasco}
|
|
8
|
-
s.version = "1.
|
|
8
|
+
s.version = "1.2.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["amardaxini"]
|
|
@@ -27,6 +27,9 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
"bin/cygwin1.dll",
|
|
28
28
|
"bin/pasco",
|
|
29
29
|
"bin/pasco.exe",
|
|
30
|
+
"lib/cygwin1.dll",
|
|
31
|
+
"lib/pasco",
|
|
32
|
+
"lib/pasco.exe",
|
|
30
33
|
"lib/pasco.rb",
|
|
31
34
|
"pasco.gemspec",
|
|
32
35
|
"test/helper.rb",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pasco
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- amardaxini
|
|
@@ -43,6 +43,9 @@ files:
|
|
|
43
43
|
- bin/cygwin1.dll
|
|
44
44
|
- bin/pasco
|
|
45
45
|
- bin/pasco.exe
|
|
46
|
+
- lib/cygwin1.dll
|
|
47
|
+
- lib/pasco
|
|
48
|
+
- lib/pasco.exe
|
|
46
49
|
- lib/pasco.rb
|
|
47
50
|
- pasco.gemspec
|
|
48
51
|
- test/helper.rb
|