├── CHANGELOG ├── CONTRIBUTORS ├── LICENSE ├── README ├── init.rb ├── install.rb ├── javascripts ├── excanvas.pack.js └── jquery.flot.pack.js └── lib └── flotilla.rb /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuamiller/flotilla/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuamiller/flotilla/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuamiller/flotilla/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuamiller/flotilla/HEAD/README -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require 'flotilla' 2 | 3 | ActionView::Helpers -------------------------------------------------------------------------------- /install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuamiller/flotilla/HEAD/install.rb -------------------------------------------------------------------------------- /javascripts/excanvas.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuamiller/flotilla/HEAD/javascripts/excanvas.pack.js -------------------------------------------------------------------------------- /javascripts/jquery.flot.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuamiller/flotilla/HEAD/javascripts/jquery.flot.pack.js -------------------------------------------------------------------------------- /lib/flotilla.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshuamiller/flotilla/HEAD/lib/flotilla.rb --------------------------------------------------------------------------------