├── .gitignore ├── CHANGELOG.txt ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.markdown ├── Rakefile ├── TODO.txt ├── VERSION ├── bin └── shine ├── css ├── base.css ├── effects.css ├── shAll.css └── shThemeFadeToGrey.css ├── images └── default-noise.png ├── lib ├── config.ru ├── deps.js ├── ext │ ├── filemethods.rb │ └── string.rb ├── jquery-1.5.1.min.js ├── plugins │ ├── iphone.js │ └── resize.js ├── shining.js ├── shining.rb └── shining │ ├── errors.rb │ ├── heroku.rb │ ├── player.rb │ └── preso.rb ├── shining.gemspec ├── spec ├── cli_spec.rb ├── filemethods_spec.rb ├── heroku_spec.rb ├── javascripts │ ├── dom.html │ ├── rhino.js │ ├── sample │ │ ├── config.json │ │ ├── index.html │ │ └── slides │ │ │ ├── slide1.css │ │ │ ├── slide1.html │ │ │ ├── slide1.js │ │ │ ├── slide2.css │ │ │ ├── slide2.html │ │ │ ├── slide2.js │ │ │ └── welcome.html │ └── unit │ │ ├── spec.helper.js │ │ └── spec.js ├── preso_spec.rb ├── sample │ ├── base.css │ ├── config.json │ ├── effects.css │ ├── index.html │ └── slides │ │ ├── first.html │ │ ├── first.js │ │ ├── second.html │ │ ├── second.js │ │ ├── third.html │ │ └── third.js ├── shining_spec.rb └── spec_helper.rb ├── templates ├── config.json ├── index.html └── slides │ └── welcome.html └── themes ├── black.css ├── default.css ├── retro.css └── slidedown.css /.gitignore: -------------------------------------------------------------------------------- 1 | .rvmrc 2 | -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | = 2.0 (17/08/2010) 2 | 3 | * The long waited code reorganisation. 4 | * More reliant on events rather than piling up functions one after another. 5 | * Dropped support for Haml altogether, since haml-js is crap and I don't want to become it's new maintainer. 6 | * Presentation notes through