remote_table 0.2.10 → 0.2.11

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 CHANGED
@@ -1 +1 @@
1
- 0.2.10
1
+ 0.2.11
data/lib/remote_table.rb CHANGED
@@ -3,10 +3,15 @@ require 'iconv'
3
3
  require 'uri'
4
4
  require 'tmpdir'
5
5
  require 'active_support'
6
- begin; require 'active_support/core_ext/object/blank'; rescue MissingSourceFile; end
7
- begin; require 'active_support/core_ext/string/inflections'; rescue MissingSourceFile; end
8
- begin; require 'active_support/core_ext/array/wrap'; rescue MissingSourceFile; end
9
- begin; require 'active_support/core_ext/hash/except'; rescue MissingSourceFile; end
6
+ require 'active_support/version'
7
+ %w{
8
+ active_support/core_ext/object/blank
9
+ active_support/core_ext/string/inflections
10
+ active_support/core_ext/array/wrap
11
+ active_support/core_ext/hash/except
12
+ }.each do |active_support_3_requirement|
13
+ require active_support_3_requirement
14
+ end if ActiveSupport::VERSION::MAJOR == 3
10
15
  require 'fastercsv'
11
16
  require 'slither'
12
17
  require 'roo'
data/remote_table.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{remote_table}
8
- s.version = "0.2.10"
8
+ s.version = "0.2.11"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Seamus Abshere", "Andy Rossmeissl"]
12
- s.date = %q{2010-04-16}
12
+ s.date = %q{2010-04-19}
13
13
  s.description = %q{Remotely open and parse Excel XLS, ODS, CSV and fixed-width tables.}
14
14
  s.email = %q{seamus@abshere.net}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 10
9
- version: 0.2.10
8
+ - 11
9
+ version: 0.2.11
10
10
  platform: ruby
11
11
  authors:
12
12
  - Seamus Abshere
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-04-16 00:00:00 -04:00
18
+ date: 2010-04-19 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency