├── lib └── tasks │ └── .gitkeep ├── public ├── favicon.ico ├── stylesheets │ ├── .gitkeep │ ├── kenny_dialoggins.css │ └── screen.css ├── images │ └── rails.png ├── robots.txt ├── javascripts │ ├── application.js │ ├── kenny_dialoggins.js │ ├── dragdrop.js │ ├── controls.js │ └── effects.js ├── 422.html ├── 404.html └── 500.html ├── vendor └── gems │ └── kenny_dialoggins-1.0.7 │ ├── VERSION │ ├── .gitignore │ ├── rails │ └── init.rb │ ├── init.rb │ ├── lib │ ├── kenny_dialoggins.rb │ ├── generators │ │ └── kenny_dialoggins │ │ │ ├── kenny_dialoggins_generator.rb │ │ │ └── templates │ │ │ ├── kenny_dialoggins.css │ │ │ └── kenny_dialoggins.js │ └── kenny_dialoggins │ │ └── helpers.rb │ ├── generators │ └── kenny_dialoggins │ │ ├── kenny_dialoggins_generator.rb │ │ └── templates │ │ ├── kenny_dialoggins.css │ │ └── kenny_dialoggins.js │ ├── test │ ├── test_helper.rb │ └── kenny_dialoggins │ │ └── helpers_test.rb │ ├── MIT-LICENSE │ ├── Rakefile │ ├── kenny_dialoggins.gemspec │ ├── .specification │ └── README.rdoc ├── .gitignore ├── app ├── helpers │ └── application_helper.rb ├── views │ ├── examples │ │ ├── _partial_example.html.erb │ │ └── index.html.erb │ └── layouts │ │ └── application.html.erb └── controllers │ ├── application_controller.rb │ └── examples_controller.rb ├── config ├── routes.rb ├── environment.rb ├── initializers │ ├── mime_types.rb │ ├── inflections.rb │ ├── backtrace_silencers.rb │ ├── session_store.rb │ └── secret_token.rb ├── locales │ └── en.yml ├── boot.rb ├── database.yml ├── environments │ ├── development.rb │ ├── test.rb │ └── production.rb └── application.rb ├── config.ru ├── doc └── README_FOR_APP ├── test ├── performance │ └── browsing_test.rb └── test_helper.rb ├── Rakefile ├── script └── rails ├── db └── seeds.rb ├── Gemfile ├── Gemfile.lock └── README /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gems/kenny_dialoggins-1.0.7/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.7 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | db/*.sqlite3 3 | log/*.log 4 | tmp/**/* -------------------------------------------------------------------------------- /vendor/gems/kenny_dialoggins-1.0.7/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.gem -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/views/examples/_partial_example.html.erb: -------------------------------------------------------------------------------- 1 |
Maybe you tried to change something you didn't have access to.
24 |You may have mistyped the address or the page may have moved.
24 |We've been notified about this issue and we'll take a look at it shortly.
24 |