├── README.markdown ├── deals ├── .README.markdown.swp ├── .README.swp ├── .gitignore ├── .redcar │ ├── lucene │ │ ├── _kk.cfs │ │ ├── _kk_3.del │ │ ├── _kl.cfs │ │ ├── _kl_1.del │ │ ├── _km.cfs │ │ ├── _km_1.del │ │ ├── _kn.cfs │ │ ├── _ko.cfs │ │ ├── segments.gen │ │ └── segments_io │ ├── lucene_last_updated │ ├── redcar.lock │ └── tags ├── Gemfile ├── Gemfile.lock ├── README ├── README.markdown ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── rails.png │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── convert_data.js.coffee │ │ │ ├── deals.js.coffee │ │ │ ├── merchants.js.coffee │ │ │ ├── purchaser_deals.js.coffee │ │ │ └── purchasers.js.coffee │ │ └── stylesheets │ │ │ ├── application.css │ │ │ ├── convert_data.css.scss │ │ │ ├── deals.css.scss │ │ │ ├── merchants.css.scss │ │ │ ├── purchaser_deals.css.scss │ │ │ ├── purchasers.css.scss │ │ │ └── scaffolds.css.scss │ ├── controllers │ │ ├── application_controller.rb │ │ ├── conversion_controller.rb │ │ ├── deals_controller.rb │ │ ├── merchants_controller.rb │ │ ├── purchaser_deals_controller.rb │ │ └── purchasers_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ ├── convert_data_helper.rb │ │ ├── deals_helper.rb │ │ ├── merchants_helper.rb │ │ ├── purchaser_deals_helper.rb │ │ └── purchasers_helper.rb │ ├── mailers │ │ └── .gitkeep │ ├── models │ │ ├── .gitkeep │ │ ├── conversion.rb │ │ ├── deal.rb │ │ ├── merchant.rb │ │ ├── purchaser.rb │ │ └── purchaser_deal.rb │ └── views │ │ ├── conversion │ │ └── index.html.erb │ │ ├── deals │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ ├── layouts │ │ └── application.html.erb │ │ ├── merchants │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ ├── purchaser_deals │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ └── purchasers │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.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 │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ └── routes.rb ├── db │ ├── migrate │ │ ├── 20111008224010_create_purchasers.rb │ │ ├── 20111008224135_create_merchants.rb │ │ ├── 20111008224230_create_deals.rb │ │ └── 20111008224329_create_purchaser_deals.rb │ └── seeds.rb ├── deals_development.sqlite ├── development.sqlite3 ├── doc │ └── README_FOR_APP ├── example_input.tab ├── lib │ ├── assets │ │ └── .gitkeep │ └── tasks │ │ └── .gitkeep ├── log │ └── .gitkeep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ ├── index.html │ └── robots.txt ├── script │ └── rails ├── test │ ├── fixtures │ │ ├── .gitkeep │ │ ├── convert_data.yml │ │ ├── deals.yml │ │ ├── merchants.yml │ │ ├── purchaser_deals.yml │ │ └── purchasers.yml │ ├── functional │ │ ├── .gitkeep │ │ ├── convert_data_controller_test.rb │ │ ├── deals_controller_test.rb │ │ ├── merchants_controller_test.rb │ │ ├── purchaser_deals_controller_test.rb │ │ └── purchasers_controller_test.rb │ ├── integration │ │ └── .gitkeep │ ├── performance │ │ └── browsing_test.rb │ ├── test_helper.rb │ └── unit │ │ ├── .gitkeep │ │ ├── convert_datum_test.rb │ │ ├── deal_test.rb │ │ ├── helpers │ │ ├── convert_data_helper_test.rb │ │ ├── deals_helper_test.rb │ │ ├── merchants_helper_test.rb │ │ ├── purchaser_deals_helper_test.rb │ │ └── purchasers_helper_test.rb │ │ ├── merchant_test.rb │ │ ├── purchaser_deal_test.rb │ │ └── purchaser_test.rb └── vendor │ ├── assets │ └── stylesheets │ │ └── .gitkeep │ └── plugins │ └── .gitkeep └── example_input.tab /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/README.markdown -------------------------------------------------------------------------------- /deals/.README.markdown.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.README.markdown.swp -------------------------------------------------------------------------------- /deals/.README.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.README.swp -------------------------------------------------------------------------------- /deals/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.gitignore -------------------------------------------------------------------------------- /deals/.redcar/lucene/_kk.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/lucene/_kk.cfs -------------------------------------------------------------------------------- /deals/.redcar/lucene/_kk_3.del: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/lucene/_kk_3.del -------------------------------------------------------------------------------- /deals/.redcar/lucene/_kl.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/lucene/_kl.cfs -------------------------------------------------------------------------------- /deals/.redcar/lucene/_kl_1.del: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /deals/.redcar/lucene/_km.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/lucene/_km.cfs -------------------------------------------------------------------------------- /deals/.redcar/lucene/_km_1.del: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /deals/.redcar/lucene/_kn.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/lucene/_kn.cfs -------------------------------------------------------------------------------- /deals/.redcar/lucene/_ko.cfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/lucene/_ko.cfs -------------------------------------------------------------------------------- /deals/.redcar/lucene/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/lucene/segments.gen -------------------------------------------------------------------------------- /deals/.redcar/lucene/segments_io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/lucene/segments_io -------------------------------------------------------------------------------- /deals/.redcar/lucene_last_updated: -------------------------------------------------------------------------------- 1 | 1318382595 2 | -------------------------------------------------------------------------------- /deals/.redcar/redcar.lock: -------------------------------------------------------------------------------- 1 | 27652: Locked by 27652 at Mon Oct 10 07:02:24 -0600 2011 2 | -------------------------------------------------------------------------------- /deals/.redcar/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/.redcar/tags -------------------------------------------------------------------------------- /deals/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/Gemfile -------------------------------------------------------------------------------- /deals/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/Gemfile.lock -------------------------------------------------------------------------------- /deals/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/README -------------------------------------------------------------------------------- /deals/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/README.markdown -------------------------------------------------------------------------------- /deals/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/Rakefile -------------------------------------------------------------------------------- /deals/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/images/rails.png -------------------------------------------------------------------------------- /deals/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /deals/app/assets/javascripts/convert_data.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/javascripts/convert_data.js.coffee -------------------------------------------------------------------------------- /deals/app/assets/javascripts/deals.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/javascripts/deals.js.coffee -------------------------------------------------------------------------------- /deals/app/assets/javascripts/merchants.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/javascripts/merchants.js.coffee -------------------------------------------------------------------------------- /deals/app/assets/javascripts/purchaser_deals.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/javascripts/purchaser_deals.js.coffee -------------------------------------------------------------------------------- /deals/app/assets/javascripts/purchasers.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/javascripts/purchasers.js.coffee -------------------------------------------------------------------------------- /deals/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /deals/app/assets/stylesheets/convert_data.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/stylesheets/convert_data.css.scss -------------------------------------------------------------------------------- /deals/app/assets/stylesheets/deals.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/stylesheets/deals.css.scss -------------------------------------------------------------------------------- /deals/app/assets/stylesheets/merchants.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/stylesheets/merchants.css.scss -------------------------------------------------------------------------------- /deals/app/assets/stylesheets/purchaser_deals.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/stylesheets/purchaser_deals.css.scss -------------------------------------------------------------------------------- /deals/app/assets/stylesheets/purchasers.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/stylesheets/purchasers.css.scss -------------------------------------------------------------------------------- /deals/app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /deals/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /deals/app/controllers/conversion_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/controllers/conversion_controller.rb -------------------------------------------------------------------------------- /deals/app/controllers/deals_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/controllers/deals_controller.rb -------------------------------------------------------------------------------- /deals/app/controllers/merchants_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/controllers/merchants_controller.rb -------------------------------------------------------------------------------- /deals/app/controllers/purchaser_deals_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/controllers/purchaser_deals_controller.rb -------------------------------------------------------------------------------- /deals/app/controllers/purchasers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/controllers/purchasers_controller.rb -------------------------------------------------------------------------------- /deals/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /deals/app/helpers/convert_data_helper.rb: -------------------------------------------------------------------------------- 1 | module ConvertDataHelper 2 | end 3 | -------------------------------------------------------------------------------- /deals/app/helpers/deals_helper.rb: -------------------------------------------------------------------------------- 1 | module DealsHelper 2 | end 3 | -------------------------------------------------------------------------------- /deals/app/helpers/merchants_helper.rb: -------------------------------------------------------------------------------- 1 | module MerchantsHelper 2 | end 3 | -------------------------------------------------------------------------------- /deals/app/helpers/purchaser_deals_helper.rb: -------------------------------------------------------------------------------- 1 | module PurchaserDealsHelper 2 | end 3 | -------------------------------------------------------------------------------- /deals/app/helpers/purchasers_helper.rb: -------------------------------------------------------------------------------- 1 | module PurchasersHelper 2 | end 3 | -------------------------------------------------------------------------------- /deals/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/app/models/conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/models/conversion.rb -------------------------------------------------------------------------------- /deals/app/models/deal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/models/deal.rb -------------------------------------------------------------------------------- /deals/app/models/merchant.rb: -------------------------------------------------------------------------------- 1 | class Merchant < ActiveRecord::Base 2 | has_many :deals 3 | end 4 | -------------------------------------------------------------------------------- /deals/app/models/purchaser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/models/purchaser.rb -------------------------------------------------------------------------------- /deals/app/models/purchaser_deal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/models/purchaser_deal.rb -------------------------------------------------------------------------------- /deals/app/views/conversion/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/conversion/index.html.erb -------------------------------------------------------------------------------- /deals/app/views/deals/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/deals/_form.html.erb -------------------------------------------------------------------------------- /deals/app/views/deals/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/deals/edit.html.erb -------------------------------------------------------------------------------- /deals/app/views/deals/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/deals/index.html.erb -------------------------------------------------------------------------------- /deals/app/views/deals/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/deals/new.html.erb -------------------------------------------------------------------------------- /deals/app/views/deals/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/deals/show.html.erb -------------------------------------------------------------------------------- /deals/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /deals/app/views/merchants/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/merchants/_form.html.erb -------------------------------------------------------------------------------- /deals/app/views/merchants/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/merchants/edit.html.erb -------------------------------------------------------------------------------- /deals/app/views/merchants/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/merchants/index.html.erb -------------------------------------------------------------------------------- /deals/app/views/merchants/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/merchants/new.html.erb -------------------------------------------------------------------------------- /deals/app/views/merchants/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/merchants/show.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchaser_deals/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchaser_deals/_form.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchaser_deals/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchaser_deals/edit.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchaser_deals/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchaser_deals/index.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchaser_deals/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchaser_deals/new.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchaser_deals/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchaser_deals/show.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchasers/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchasers/_form.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchasers/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchasers/edit.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchasers/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchasers/index.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchasers/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchasers/new.html.erb -------------------------------------------------------------------------------- /deals/app/views/purchasers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/app/views/purchasers/show.html.erb -------------------------------------------------------------------------------- /deals/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config.ru -------------------------------------------------------------------------------- /deals/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/application.rb -------------------------------------------------------------------------------- /deals/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/boot.rb -------------------------------------------------------------------------------- /deals/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/database.yml -------------------------------------------------------------------------------- /deals/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/environment.rb -------------------------------------------------------------------------------- /deals/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/environments/development.rb -------------------------------------------------------------------------------- /deals/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/environments/production.rb -------------------------------------------------------------------------------- /deals/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/environments/test.rb -------------------------------------------------------------------------------- /deals/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /deals/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/initializers/inflections.rb -------------------------------------------------------------------------------- /deals/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /deals/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /deals/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/initializers/session_store.rb -------------------------------------------------------------------------------- /deals/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /deals/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/locales/en.yml -------------------------------------------------------------------------------- /deals/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/config/routes.rb -------------------------------------------------------------------------------- /deals/db/migrate/20111008224010_create_purchasers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/db/migrate/20111008224010_create_purchasers.rb -------------------------------------------------------------------------------- /deals/db/migrate/20111008224135_create_merchants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/db/migrate/20111008224135_create_merchants.rb -------------------------------------------------------------------------------- /deals/db/migrate/20111008224230_create_deals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/db/migrate/20111008224230_create_deals.rb -------------------------------------------------------------------------------- /deals/db/migrate/20111008224329_create_purchaser_deals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/db/migrate/20111008224329_create_purchaser_deals.rb -------------------------------------------------------------------------------- /deals/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/db/seeds.rb -------------------------------------------------------------------------------- /deals/deals_development.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/deals_development.sqlite -------------------------------------------------------------------------------- /deals/development.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/doc/README_FOR_APP -------------------------------------------------------------------------------- /deals/example_input.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/example_input.tab -------------------------------------------------------------------------------- /deals/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/public/404.html -------------------------------------------------------------------------------- /deals/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/public/422.html -------------------------------------------------------------------------------- /deals/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/public/500.html -------------------------------------------------------------------------------- /deals/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/public/index.html -------------------------------------------------------------------------------- /deals/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/public/robots.txt -------------------------------------------------------------------------------- /deals/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/script/rails -------------------------------------------------------------------------------- /deals/test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/test/fixtures/convert_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/fixtures/convert_data.yml -------------------------------------------------------------------------------- /deals/test/fixtures/deals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/fixtures/deals.yml -------------------------------------------------------------------------------- /deals/test/fixtures/merchants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/fixtures/merchants.yml -------------------------------------------------------------------------------- /deals/test/fixtures/purchaser_deals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/fixtures/purchaser_deals.yml -------------------------------------------------------------------------------- /deals/test/fixtures/purchasers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/fixtures/purchasers.yml -------------------------------------------------------------------------------- /deals/test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/test/functional/convert_data_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/functional/convert_data_controller_test.rb -------------------------------------------------------------------------------- /deals/test/functional/deals_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/functional/deals_controller_test.rb -------------------------------------------------------------------------------- /deals/test/functional/merchants_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/functional/merchants_controller_test.rb -------------------------------------------------------------------------------- /deals/test/functional/purchaser_deals_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/functional/purchaser_deals_controller_test.rb -------------------------------------------------------------------------------- /deals/test/functional/purchasers_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/functional/purchasers_controller_test.rb -------------------------------------------------------------------------------- /deals/test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /deals/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/test_helper.rb -------------------------------------------------------------------------------- /deals/test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/test/unit/convert_datum_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/convert_datum_test.rb -------------------------------------------------------------------------------- /deals/test/unit/deal_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/deal_test.rb -------------------------------------------------------------------------------- /deals/test/unit/helpers/convert_data_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/helpers/convert_data_helper_test.rb -------------------------------------------------------------------------------- /deals/test/unit/helpers/deals_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/helpers/deals_helper_test.rb -------------------------------------------------------------------------------- /deals/test/unit/helpers/merchants_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/helpers/merchants_helper_test.rb -------------------------------------------------------------------------------- /deals/test/unit/helpers/purchaser_deals_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/helpers/purchaser_deals_helper_test.rb -------------------------------------------------------------------------------- /deals/test/unit/helpers/purchasers_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/helpers/purchasers_helper_test.rb -------------------------------------------------------------------------------- /deals/test/unit/merchant_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/merchant_test.rb -------------------------------------------------------------------------------- /deals/test/unit/purchaser_deal_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/purchaser_deal_test.rb -------------------------------------------------------------------------------- /deals/test/unit/purchaser_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/deals/test/unit/purchaser_test.rb -------------------------------------------------------------------------------- /deals/vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deals/vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_input.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorman/data-engineering/HEAD/example_input.tab --------------------------------------------------------------------------------