remote_table 1.0.0 → 1.0.1

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/.gitignore CHANGED
@@ -3,3 +3,4 @@
3
3
  coverage
4
4
  rdoc
5
5
  pkg
6
+ Gemfile.lock
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ begin
13
13
  require 'rake/rdoctask'
14
14
  Rake::RDocTask.new do |rdoc|
15
15
  rdoc.rdoc_dir = 'rdoc'
16
- rdoc.title = 'taps'
16
+ rdoc.title = 'remote_table'
17
17
  rdoc.options << '--line-numbers' << '--inline-source'
18
18
  rdoc.rdoc_files.include('README*')
19
19
  rdoc.rdoc_files.include('lib/**/*.rb')
@@ -1,3 +1,3 @@
1
1
  class RemoteTable
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
data/lib/remote_table.rb CHANGED
@@ -6,7 +6,10 @@ require 'active_support/version'
6
6
  active_support/core_ext/module
7
7
  }.each do |active_support_3_requirement|
8
8
  require active_support_3_requirement
9
- end if ActiveSupport::VERSION::MAJOR == 3
9
+ end if ::ActiveSupport::VERSION::MAJOR == 3
10
+
11
+ # sabshere 1/25/11 sometimes people call Slither from add_hints! (deprecated)
12
+ autoload :Slither, ::Gem.required_location('slither', 'slither.rb')
10
13
 
11
14
  class RemoteTable
12
15
  autoload :Format, 'remote_table/format'
@@ -74,6 +77,7 @@ class RemoteTable
74
77
  end
75
78
  end
76
79
  end
80
+ alias :each_row :each
77
81
 
78
82
  # Get a row by row number
79
83
  def [](row_number)
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: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Seamus Abshere
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-01-24 00:00:00 -06:00
19
+ date: 2011-01-25 00:00:00 -06:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -240,7 +240,6 @@ files:
240
240
  - .gitignore
241
241
  - CHANGELOG
242
242
  - Gemfile
243
- - Gemfile.lock
244
243
  - LICENSE
245
244
  - README.rdoc
246
245
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- remote_table (1.0.0)
5
- activesupport (>= 2.3.4)
6
- builder
7
- escape (>= 0.0.4)
8
- google-spreadsheet-ruby
9
- i18n
10
- nokogiri (>= 1.4.1)
11
- roo (~> 1.9)
12
- slither (>= 0.99.4)
13
- spreadsheet
14
- zip
15
-
16
- GEM
17
- remote: http://rubygems.org/
18
- specs:
19
- activesupport (3.0.3)
20
- builder (3.0.0)
21
- columnize (0.3.2)
22
- errata (0.2.4)
23
- activesupport (>= 2.3.4)
24
- remote_table (>= 0.2.31)
25
- escape (0.0.4)
26
- google-spreadsheet-ruby (0.1.2)
27
- nokogiri (>= 1.4.3.1)
28
- oauth (>= 0.3.6)
29
- i18n (0.5.0)
30
- linecache (0.43)
31
- nokogiri (1.4.3.1)
32
- oauth (0.4.4)
33
- roo (1.9.3)
34
- ruby-debug (0.10.4)
35
- columnize (>= 0.1)
36
- ruby-debug-base (~> 0.10.4.0)
37
- ruby-debug-base (0.10.4)
38
- linecache (>= 0.3)
39
- ruby-ole (1.2.10.1)
40
- shoulda (2.10.3)
41
- slither (0.99.4)
42
- spreadsheet (0.6.4.1)
43
- ruby-ole
44
- test-unit (2.1.2)
45
- zip (2.0.2)
46
-
47
- PLATFORMS
48
- ruby
49
-
50
- DEPENDENCIES
51
- activesupport (>= 2.3.4)
52
- builder
53
- errata (>= 0.2.0)
54
- escape (>= 0.0.4)
55
- google-spreadsheet-ruby
56
- i18n
57
- nokogiri (>= 1.4.1)
58
- remote_table!
59
- roo (~> 1.9)
60
- ruby-debug
61
- shoulda
62
- slither (>= 0.99.4)
63
- spreadsheet
64
- test-unit
65
- zip