├── .document ├── .gemfiles ├── Gemfile.rails-3.0.x └── Gemfile.rails-3.1.x ├── .gitignore ├── .rspec ├── .rvmrc ├── .travis.yml ├── CHANGELOG.rdoc ├── Gemfile ├── LICENSE ├── README.rdoc ├── Rakefile ├── autotest └── discover.rb ├── init.rb ├── lib ├── tabletastic.rb └── tabletastic │ ├── helper.rb │ ├── table_builder.rb │ ├── table_field.rb │ └── version.rb ├── spec ├── spec_helper.rb ├── tabletastic │ ├── table_builder_spec.rb │ └── table_field_spec.rb └── tabletastic_spec.rb └── tabletastic.gemspec /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/.document -------------------------------------------------------------------------------- /.gemfiles/Gemfile.rails-3.0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/.gemfiles/Gemfile.rails-3.0.x -------------------------------------------------------------------------------- /.gemfiles/Gemfile.rails-3.1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/.gemfiles/Gemfile.rails-3.1.x -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use --create 1.9.2@tabletastic 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/CHANGELOG.rdoc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/Rakefile -------------------------------------------------------------------------------- /autotest/discover.rb: -------------------------------------------------------------------------------- 1 | Autotest.add_discovery { "rspec2" } 2 | -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/init.rb -------------------------------------------------------------------------------- /lib/tabletastic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/lib/tabletastic.rb -------------------------------------------------------------------------------- /lib/tabletastic/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/lib/tabletastic/helper.rb -------------------------------------------------------------------------------- /lib/tabletastic/table_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/lib/tabletastic/table_builder.rb -------------------------------------------------------------------------------- /lib/tabletastic/table_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/lib/tabletastic/table_field.rb -------------------------------------------------------------------------------- /lib/tabletastic/version.rb: -------------------------------------------------------------------------------- 1 | module Tabletastic 2 | VERSION = "0.2.3" 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/tabletastic/table_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/spec/tabletastic/table_builder_spec.rb -------------------------------------------------------------------------------- /spec/tabletastic/table_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/spec/tabletastic/table_field_spec.rb -------------------------------------------------------------------------------- /spec/tabletastic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/spec/tabletastic_spec.rb -------------------------------------------------------------------------------- /tabletastic.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgdavey/tabletastic/HEAD/tabletastic.gemspec --------------------------------------------------------------------------------