├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README ├── README.rdoc ├── Rakefile ├── TODO ├── app └── views │ └── layouts │ └── application.datatables.jsonify ├── lib ├── simple_datatables.rb └── simple_datatables │ ├── engine.rb │ └── version.rb ├── simple_datatables.gemspec └── vendor └── assets └── javascripts ├── jquery.dataTables.min.js ├── jquery.datatables.fnSetFilteringDelay.js └── simple_datatables.js.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | *.gem 3 | .bundle 4 | *.swp 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | - multiple sorting columns 2 | - make tests... 3 | -------------------------------------------------------------------------------- /app/views/layouts/application.datatables.jsonify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/app/views/layouts/application.datatables.jsonify -------------------------------------------------------------------------------- /lib/simple_datatables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/lib/simple_datatables.rb -------------------------------------------------------------------------------- /lib/simple_datatables/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/lib/simple_datatables/engine.rb -------------------------------------------------------------------------------- /lib/simple_datatables/version.rb: -------------------------------------------------------------------------------- 1 | module SimpleDatatables 2 | VERSION = "0.3.0" 3 | end 4 | -------------------------------------------------------------------------------- /simple_datatables.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/simple_datatables.gemspec -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/vendor/assets/javascripts/jquery.dataTables.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.datatables.fnSetFilteringDelay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/vendor/assets/javascripts/jquery.datatables.fnSetFilteringDelay.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/simple_datatables.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gryphon/simple_datatables/HEAD/vendor/assets/javascripts/simple_datatables.js.coffee --------------------------------------------------------------------------------