Sha256: d9118b6024c470a23ba68064b30ea9834be10c9138038fa0dc57b8c41675a217

Contents?: true

Size: 287 Bytes

Versions: 33

Compression:

Stored size: 287 Bytes

Contents

require 'remote_table'

a = RemoteTable.new(
      :url => 'http://www.postgresql.org/docs/9.1/static/sql-keywords-appendix.html',
      :row_css => 'table.CALSTABLE tbody tr',
      :column_css => 'td',
      :headers => %w{ key_word }
    )

a.each do |row|
  puts row['key_word']
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
upsert-2.9.10-java spec/misc/get_postgres_reserved_words.rb
upsert-2.9.10 spec/misc/get_postgres_reserved_words.rb
upsert-2.9.9-universal-java-11 spec/misc/get_postgres_reserved_words.rb
upsert-2.9.9 spec/misc/get_postgres_reserved_words.rb
upsert-2.2.1 spec/misc/get_postgres_reserved_words.rb
upsert-2.2.0 spec/misc/get_postgres_reserved_words.rb
upsert-2.1.2 spec/misc/get_postgres_reserved_words.rb
upsert-2.1.1 spec/misc/get_postgres_reserved_words.rb
upsert-2.1.0 spec/misc/get_postgres_reserved_words.rb
upsert-2.0.4 spec/misc/get_postgres_reserved_words.rb
upsert-2.0.3 spec/misc/get_postgres_reserved_words.rb
upsert-2.0.2 spec/misc/get_postgres_reserved_words.rb
upsert-2.0.1 spec/misc/get_postgres_reserved_words.rb
upsert-2.0.0 spec/misc/get_postgres_reserved_words.rb
upsert-1.2.0 spec/misc/get_postgres_reserved_words.rb
upsert-1.1.7 spec/misc/get_postgres_reserved_words.rb
upsert-1.1.6 spec/misc/get_postgres_reserved_words.rb
upsert-1.1.5 spec/misc/get_postgres_reserved_words.rb
upsert-1.1.4 spec/misc/get_postgres_reserved_words.rb
upsert-1.1.3 spec/misc/get_postgres_reserved_words.rb