remote_table 1.2.1 → 1.2.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/lib/remote_table/format.rb
CHANGED
data/lib/remote_table/version.rb
CHANGED
data/test/test_remote_table.rb
CHANGED
@@ -87,9 +87,14 @@ class TestRemoteTable < Test::Unit::TestCase
|
|
87
87
|
end
|
88
88
|
|
89
89
|
should %{not die when it reads Åland Islands} do
|
90
|
-
t = RemoteTable.new
|
90
|
+
t = RemoteTable.new 'http://www.iso.org/iso/list-en1-semic-3.txt', :skip => 2, :headers => false, :delimiter => ';'
|
91
91
|
assert_nothing_raised do
|
92
92
|
t[1][0]
|
93
93
|
end
|
94
94
|
end
|
95
|
+
|
96
|
+
should %{parse a big CSV that is not UTF-8} do
|
97
|
+
t = RemoteTable.new 'https://openflights.svn.sourceforge.net/svnroot/openflights/openflights/data/airports.dat', :headers => false
|
98
|
+
assert_equal 'Goroka', t[0][1]
|
99
|
+
end
|
95
100
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: remote_table
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 1.2.
|
9
|
+
- 2
|
10
|
+
version: 1.2.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Seamus Abshere
|