Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sixfeetover committed Sep 9, 2011
0 parents commit a143a0e
Show file tree
Hide file tree
Showing 8 changed files with 480 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in data-table.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "bundler/gem_tasks"
20 changes: 20 additions & 0 deletions data-table.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "data-table/version"

Gem::Specification.new do |s|
s.name = "data-table"
s.version = DataTable::VERSION
s.authors = ["Steve Erickson", "Jeff Fraser"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Turn arrays of hashes or models in to an HTML table.}
s.description = %q{data-table is a simple gem that provides a DSL for allowing you do turn an array of hashes or ActiveRecord objects into an HTML table.}

s.rubyforge_project = "data-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"]
end
3 changes: 3 additions & 0 deletions lib/data-table.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
require "data-table/version"
require "data-table/data_table"
require "data-table/data_table_column"
Loading

0 comments on commit a143a0e

Please sign in to comment.