gitextract_eb0mmh5t/ ├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── bin/ │ ├── bundle │ ├── rails │ └── rake ├── build.sh ├── components/ │ ├── annoyance/ │ │ ├── .gitignore │ │ ├── .rspec │ │ ├── .ruby-gemset │ │ ├── .ruby-version │ │ ├── Gemfile │ │ ├── MIT-LICENSE │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── annoyance.gemspec │ │ ├── app/ │ │ │ └── models/ │ │ │ └── annoyance/ │ │ │ ├── levels.rb │ │ │ └── meter.rb │ │ ├── lib/ │ │ │ ├── annoyance/ │ │ │ │ ├── engine.rb │ │ │ │ └── version.rb │ │ │ └── annoyance.rb │ │ ├── spec/ │ │ │ ├── annoyance/ │ │ │ │ ├── levels_spec.rb │ │ │ │ └── meter_spec.rb │ │ │ └── spec_helper.rb │ │ └── test.sh │ ├── email_signup/ │ │ ├── .gitignore │ │ ├── .rspec │ │ ├── .ruby-gemset │ │ ├── .ruby-version │ │ ├── Gemfile │ │ ├── MIT-LICENSE │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── app/ │ │ │ └── models/ │ │ │ └── email_signup/ │ │ │ ├── entry.rb │ │ │ └── entry_manager.rb │ │ ├── config/ │ │ │ └── routes.rb │ │ ├── db/ │ │ │ └── migrate/ │ │ │ ├── 20130331124429_create_news_signup_entry.rb │ │ │ ├── 20130331134505_rename_news_signup_etnries_to_email_signup_entries.rb │ │ │ └── 20130403220851_remove_tries_from_email_signup_entry.rb │ │ ├── email_signup.gemspec │ │ ├── lib/ │ │ │ ├── email_signup/ │ │ │ │ ├── engine.rb │ │ │ │ └── version.rb │ │ │ ├── email_signup.rb │ │ │ └── tasks/ │ │ │ └── news_signup_tasks.rake │ │ ├── script/ │ │ │ └── rails │ │ ├── spec/ │ │ │ ├── dummy/ │ │ │ │ ├── README.rdoc │ │ │ │ ├── Rakefile │ │ │ │ ├── app/ │ │ │ │ │ ├── assets/ │ │ │ │ │ │ ├── javascripts/ │ │ │ │ │ │ │ └── application.js │ │ │ │ │ │ └── stylesheets/ │ │ │ │ │ │ └── application.css │ │ │ │ │ ├── controllers/ │ │ │ │ │ │ └── application_controller.rb │ │ │ │ │ ├── helpers/ │ │ │ │ │ │ └── application_helper.rb │ │ │ │ │ ├── mailers/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── models/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── views/ │ │ │ │ │ └── layouts/ │ │ │ │ │ └── application.html.erb │ │ │ │ ├── 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 │ │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ │ ├── locales/ │ │ │ │ │ │ └── en.yml │ │ │ │ │ └── routes.rb │ │ │ │ ├── config.ru │ │ │ │ ├── db/ │ │ │ │ │ └── schema.rb │ │ │ │ ├── lib/ │ │ │ │ │ └── assets/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── log/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── public/ │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── 422.html │ │ │ │ │ └── 500.html │ │ │ │ └── script/ │ │ │ │ └── rails │ │ │ ├── models/ │ │ │ │ └── email_signup/ │ │ │ │ ├── entry_manager_spec.rb │ │ │ │ └── entry_spec.rb │ │ │ └── spec_helper.rb │ │ └── test.sh │ ├── event_counter/ │ │ ├── .gitignore │ │ ├── .rspec │ │ ├── .ruby-gemset │ │ ├── .ruby-version │ │ ├── Gemfile │ │ ├── MIT-LICENSE │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── app/ │ │ │ └── models/ │ │ │ └── event_counter/ │ │ │ └── logger.rb │ │ ├── config/ │ │ │ └── routes.rb │ │ ├── db/ │ │ │ └── migrate/ │ │ │ └── 20130403021547_create_event_counter_count.rb │ │ ├── event_counter.gemspec │ │ ├── lib/ │ │ │ ├── event_counter/ │ │ │ │ ├── engine.rb │ │ │ │ ├── test_helper.rb │ │ │ │ └── version.rb │ │ │ ├── event_counter.rb │ │ │ └── tasks/ │ │ │ └── event_counter_tasks.rake │ │ ├── script/ │ │ │ └── rails │ │ ├── spec/ │ │ │ ├── dummy/ │ │ │ │ ├── README.rdoc │ │ │ │ ├── Rakefile │ │ │ │ ├── app/ │ │ │ │ │ ├── assets/ │ │ │ │ │ │ ├── javascripts/ │ │ │ │ │ │ │ └── application.js │ │ │ │ │ │ └── stylesheets/ │ │ │ │ │ │ └── application.css │ │ │ │ │ ├── controllers/ │ │ │ │ │ │ └── application_controller.rb │ │ │ │ │ ├── helpers/ │ │ │ │ │ │ └── application_helper.rb │ │ │ │ │ ├── mailers/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── models/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── views/ │ │ │ │ │ └── layouts/ │ │ │ │ │ └── application.html.erb │ │ │ │ ├── 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 │ │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ │ ├── locales/ │ │ │ │ │ │ └── en.yml │ │ │ │ │ └── routes.rb │ │ │ │ ├── config.ru │ │ │ │ ├── db/ │ │ │ │ │ └── schema.rb │ │ │ │ ├── lib/ │ │ │ │ │ └── assets/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── log/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── public/ │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── 422.html │ │ │ │ │ └── 500.html │ │ │ │ └── script/ │ │ │ │ └── rails │ │ │ ├── models/ │ │ │ │ └── logger_spec.rb │ │ │ ├── spec_helper.rb │ │ │ └── support/ │ │ │ └── test_helper.rb │ │ └── test.sh │ └── teaser/ │ ├── .gitignore │ ├── .rspec │ ├── .ruby-gemset │ ├── .ruby-version │ ├── Gemfile │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── app/ │ │ ├── assets/ │ │ │ ├── images/ │ │ │ │ └── teaser/ │ │ │ │ └── .gitkeep │ │ │ ├── javascripts/ │ │ │ │ └── teaser/ │ │ │ │ ├── application.js │ │ │ │ ├── signUp.js │ │ │ │ └── teaser.js │ │ │ └── stylesheets/ │ │ │ └── teaser/ │ │ │ ├── application.css │ │ │ └── teaser.css.scss │ │ ├── controllers/ │ │ │ └── teaser/ │ │ │ ├── application_controller.rb │ │ │ └── tease_controller.rb │ │ └── views/ │ │ ├── layouts/ │ │ │ └── teaser/ │ │ │ └── application.html.erb │ │ └── teaser/ │ │ └── tease/ │ │ └── new.html.haml │ ├── config/ │ │ └── routes.rb │ ├── db/ │ │ └── migrate/ │ │ ├── 20120915205848_create_entry.rb │ │ ├── 20120917081547_add_tries_to_teaser_entries.rb │ │ └── 20130403011500_remove_entry.rb │ ├── lib/ │ │ ├── monkey_patches/ │ │ │ └── engine.rb │ │ ├── tasks/ │ │ │ └── teaser_tasks.rake │ │ ├── teaser/ │ │ │ ├── engine.rb │ │ │ └── version.rb │ │ └── teaser.rb │ ├── script/ │ │ └── rails │ ├── spec/ │ │ ├── controllers/ │ │ │ └── tease_controller_spec.rb │ │ ├── dummy/ │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app/ │ │ │ │ ├── assets/ │ │ │ │ │ ├── javascripts/ │ │ │ │ │ │ └── application.js │ │ │ │ │ └── stylesheets/ │ │ │ │ │ └── application.css │ │ │ │ ├── controllers/ │ │ │ │ │ └── application_controller.rb │ │ │ │ ├── helpers/ │ │ │ │ │ └── application_helper.rb │ │ │ │ ├── mailers/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models/ │ │ │ │ │ └── .gitkeep │ │ │ │ └── views/ │ │ │ │ └── layouts/ │ │ │ │ └── application.html.erb │ │ │ ├── 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 │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales/ │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── config.ru │ │ │ ├── db/ │ │ │ │ └── schema.rb │ │ │ ├── lib/ │ │ │ │ └── assets/ │ │ │ │ └── .gitkeep │ │ │ ├── log/ │ │ │ │ └── .gitkeep │ │ │ ├── public/ │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ └── 500.html │ │ │ ├── script/ │ │ │ │ └── rails │ │ │ ├── teaser_development │ │ │ └── teaser_test │ │ ├── features/ │ │ │ └── signing_up_for_updates_spec.rb │ │ ├── javascripts/ │ │ │ ├── helpers/ │ │ │ │ └── mock-ajax.js │ │ │ ├── support/ │ │ │ │ └── jasmine.yml │ │ │ └── teaser/ │ │ │ └── signup_spec.js │ │ ├── request_spec_helper.rb │ │ ├── spec_helper.rb │ │ └── support/ │ │ └── request_spec_helpers.rb │ ├── teaser.gemspec │ └── test.sh ├── 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 │ │ └── wrap_parameters.rb │ ├── locales/ │ │ └── en.yml │ └── routes.rb ├── config.ru ├── db/ │ ├── schema.rb │ └── seeds.rb ├── log/ │ └── .gitkeep ├── migrate_and_prepare_all.sh ├── public/ │ ├── 404.html │ ├── 422.html │ ├── 500.html │ └── robots.txt ├── script/ │ └── rails ├── spec/ │ ├── features/ │ │ └── home_page_spec.rb │ ├── fixtures/ │ │ └── .gitkeep │ └── spec_helper.rb ├── test.sh └── vendor/ ├── assets/ │ ├── javascripts/ │ │ └── .gitkeep │ └── stylesheets/ │ └── .gitkeep └── plugins/ └── .gitkeep