├── lib └── tasks │ └── .gitkeep ├── public ├── favicon.ico ├── stylesheets │ ├── .gitkeep │ ├── michael_hintbuble.css │ └── screen.css ├── images │ ├── help_bubble_pointer.png │ └── error_bubble_pointer.png ├── javascripts │ ├── application.js │ ├── michael_hintbuble.js │ ├── dragdrop.js │ └── controls.js ├── robots.txt ├── 422.html ├── 404.html └── 500.html ├── vendor └── gems │ └── michael_hintbuble-1.0.5 │ ├── VERSION │ ├── .gitignore │ ├── rails │ └── init.rb │ ├── init.rb │ ├── generators │ └── michael_hintbuble │ │ ├── templates │ │ ├── error_bubble_pointer.png │ │ ├── help_bubble_pointer.png │ │ ├── michael_hintbuble.css │ │ └── michael_hintbuble.js │ │ └── michael_hintbuble_generator.rb │ ├── lib │ ├── generators │ │ └── michael_hintbuble │ │ │ ├── templates │ │ │ ├── help_bubble_pointer.png │ │ │ ├── error_bubble_pointer.png │ │ │ ├── michael_hintbuble.css │ │ │ └── michael_hintbuble.js │ │ │ └── michael_hintbuble_generator.rb │ ├── michael_hintbuble.rb │ └── michael_hintbuble │ │ └── helpers.rb │ ├── test │ ├── test_helper.rb │ └── michael_hintbuble │ │ └── helpers_test.rb │ ├── MIT-LICENSE │ ├── Rakefile │ ├── michael_hintbuble.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/michael_hintbuble-1.0.5/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.5 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | db/*.sqlite3 3 | log/*.log 4 | tmp/**/* 5 | -------------------------------------------------------------------------------- /vendor/gems/michael_hintbuble-1.0.5/.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 |