Sha256: 6116131be8849b2be179e828ab2688af3f9798429028cdc1a642a9dffa30d83a

Contents?: true

Size: 995 Bytes

Versions: 6

Compression:

Stored size: 995 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ar_to_html_table/version"

Gem::Specification.new do |s|
  s.name        = "ar_to_html_table"
  s.version     = ArToHtmlTable::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Kip Cole"]
  s.email       = ["kipcole9@gmail.com"]
  s.homepage    = "http://github.com/kipcole9/ar_to_html_table"
  s.summary     = %q{Render an ActiveRecord result set as an HTML table}
  s.description = <<-EOF
    Defines Array#to_table that will render an ActiveRecord result set
    as an HTML table.
  EOF

  s.rubyforge_project = "ar_to_html_table"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  
  #s.add_dependency  'builder'
  #s.add_dependency  'activerecord', '~> 2.3.5'
  #s.add_dependency  'actionpack', '~> 2.3.5'
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ar_to_html_table-0.1.9 ar_to_html_table.gemspec
ar_to_html_table-0.1.8 ar_to_html_table.gemspec
ar_to_html_table-0.1.7 ar_to_html_table.gemspec
ar_to_html_table-0.1.6 ar_to_html_table.gemspec
ar_to_html_table-0.1.5 ar_to_html_table.gemspec
ar_to_html_table-0.1.4 ar_to_html_table.gemspec