├── .bundle └── config ├── .document ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── History.md ├── LICENSE ├── README.markdown ├── Rakefile ├── VERSION ├── app └── assets │ ├── javascripts │ ├── jquery.jeditable.checkbox.js │ ├── jquery.jeditable.js │ ├── on_the_spot.js │ └── on_the_spot_code.js │ └── stylesheets │ └── on_the_spot.css ├── lib ├── generators │ └── on_the_spot │ │ └── install │ │ ├── install_generator.rb │ │ └── templates │ │ ├── jquery.jeditable.mini.js │ │ ├── on_the_spot.en.yml │ │ ├── on_the_spot.fr.yml │ │ └── on_the_spot.nl.yml ├── on_the_spot.rb └── on_the_spot │ ├── controller_extension.rb │ └── on_the_spot_helpers.rb ├── npm ├── README.md └── package.json.erb ├── on_the_spot.gemspec └── spec ├── dummy ├── Rakefile ├── app │ ├── controllers │ │ └── application_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── models │ │ └── post.rb │ └── views │ │ └── layouts │ │ └── application.html.erb ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── backtrace_silencers.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── secret_token.rb │ │ └── session_store.rb │ ├── locales │ │ └── en.yml │ └── routes.rb ├── db │ ├── migrate │ │ └── 20110724190901_create_posts.rb │ └── schema.rb ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── javascripts │ │ ├── application.js │ │ ├── controls.js │ │ ├── dragdrop.js │ │ ├── effects.js │ │ ├── prototype.js │ │ └── rails.js │ └── stylesheets │ │ └── .gitkeep └── script │ └── rails ├── generators └── install_generator_spec.rb ├── on_the_spot_spec.rb └── spec_helper.rb /.bundle/config: -------------------------------------------------------------------------------- 1 | --- {} 2 | 3 | -------------------------------------------------------------------------------- /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --backtrace 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/Gemfile -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.1.5 -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.jeditable.checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/app/assets/javascripts/jquery.jeditable.checkbox.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.jeditable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/app/assets/javascripts/jquery.jeditable.js -------------------------------------------------------------------------------- /app/assets/javascripts/on_the_spot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/app/assets/javascripts/on_the_spot.js -------------------------------------------------------------------------------- /app/assets/javascripts/on_the_spot_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/app/assets/javascripts/on_the_spot_code.js -------------------------------------------------------------------------------- /app/assets/stylesheets/on_the_spot.css: -------------------------------------------------------------------------------- 1 | .on_the_spot_over { background: #EEF2A0; } -------------------------------------------------------------------------------- /lib/generators/on_the_spot/install/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/lib/generators/on_the_spot/install/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/on_the_spot/install/templates/jquery.jeditable.mini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/lib/generators/on_the_spot/install/templates/jquery.jeditable.mini.js -------------------------------------------------------------------------------- /lib/generators/on_the_spot/install/templates/on_the_spot.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/lib/generators/on_the_spot/install/templates/on_the_spot.en.yml -------------------------------------------------------------------------------- /lib/generators/on_the_spot/install/templates/on_the_spot.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/lib/generators/on_the_spot/install/templates/on_the_spot.fr.yml -------------------------------------------------------------------------------- /lib/generators/on_the_spot/install/templates/on_the_spot.nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/lib/generators/on_the_spot/install/templates/on_the_spot.nl.yml -------------------------------------------------------------------------------- /lib/on_the_spot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/lib/on_the_spot.rb -------------------------------------------------------------------------------- /lib/on_the_spot/controller_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/lib/on_the_spot/controller_extension.rb -------------------------------------------------------------------------------- /lib/on_the_spot/on_the_spot_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/lib/on_the_spot/on_the_spot_helpers.rb -------------------------------------------------------------------------------- /npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/npm/README.md -------------------------------------------------------------------------------- /npm/package.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/npm/package.json.erb -------------------------------------------------------------------------------- /on_the_spot.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/on_the_spot.gemspec -------------------------------------------------------------------------------- /spec/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/Rakefile -------------------------------------------------------------------------------- /spec/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/dummy/app/models/post.rb: -------------------------------------------------------------------------------- 1 | class Post < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /spec/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config.ru -------------------------------------------------------------------------------- /spec/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/application.rb -------------------------------------------------------------------------------- /spec/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/boot.rb -------------------------------------------------------------------------------- /spec/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/database.yml -------------------------------------------------------------------------------- /spec/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/environment.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /spec/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /spec/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /spec/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /spec/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/config/routes.rb -------------------------------------------------------------------------------- /spec/dummy/db/migrate/20110724190901_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/db/migrate/20110724190901_create_posts.rb -------------------------------------------------------------------------------- /spec/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/db/schema.rb -------------------------------------------------------------------------------- /spec/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/404.html -------------------------------------------------------------------------------- /spec/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/422.html -------------------------------------------------------------------------------- /spec/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/500.html -------------------------------------------------------------------------------- /spec/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/javascripts/application.js -------------------------------------------------------------------------------- /spec/dummy/public/javascripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/javascripts/controls.js -------------------------------------------------------------------------------- /spec/dummy/public/javascripts/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/javascripts/dragdrop.js -------------------------------------------------------------------------------- /spec/dummy/public/javascripts/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/javascripts/effects.js -------------------------------------------------------------------------------- /spec/dummy/public/javascripts/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/javascripts/prototype.js -------------------------------------------------------------------------------- /spec/dummy/public/javascripts/rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/public/javascripts/rails.js -------------------------------------------------------------------------------- /spec/dummy/public/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/dummy/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/dummy/script/rails -------------------------------------------------------------------------------- /spec/generators/install_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/generators/install_generator_spec.rb -------------------------------------------------------------------------------- /spec/on_the_spot_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/on_the_spot_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanvda/on_the_spot/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------