├── .gitignore ├── .travis.yml ├── COPYRIGHT ├── ChangeLog ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ └── application.css ├── controllers │ ├── application_controller.rb │ └── concerns │ │ └── .keep ├── helpers │ └── application_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ └── concerns │ │ └── .keep └── views │ └── layouts │ └── application.html.erb ├── bin ├── bundle ├── rails ├── rake └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.mysql.yml ├── database.postgresql.yml ├── database.sqlite.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── comable.rb │ ├── comable_override_strings.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20150515093418_create_comable_products.comable.rb │ ├── 20150515093419_create_comable_users.comable.rb │ ├── 20150515093420_create_comable_stocks.comable.rb │ ├── 20150515093421_create_comable_orders.comable.rb │ ├── 20150515093422_create_comable_order_items.comable.rb │ ├── 20150515093423_create_comable_payment_methods.comable.rb │ ├── 20150515093424_create_comable_shipment_methods.comable.rb │ ├── 20150515093425_create_comable_stores.comable.rb │ ├── 20150515093426_create_comable_addresses.comable.rb │ ├── 20150515093427_create_comable_categories.comable.rb │ ├── 20150515093428_create_comable_products_categories.comable.rb │ ├── 20150515093429_create_comable_images.comable.rb │ ├── 20150515093430_create_comable_shipments.comable.rb │ ├── 20150515093431_create_comable_payments.comable.rb │ ├── 20150515093432_create_comable_trackers.comable.rb │ ├── 20150716102335_create_comable_pages.comable.rb │ ├── 20150716102336_create_comable_themes.comable.rb │ └── 20150716102337_add_theme_id_to_comable_stores.comable.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── elecoma.png ├── favicon.ico └── robots.txt ├── test ├── controllers │ └── .keep ├── fixtures │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep └── test_helper.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/ChangeLog -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/database.mysql.yml -------------------------------------------------------------------------------- /config/database.postgresql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/database.postgresql.yml -------------------------------------------------------------------------------- /config/database.sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/database.sqlite.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- 1 | database.sqlite.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/comable.rb -------------------------------------------------------------------------------- /config/initializers/comable_override_strings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/comable_override_strings.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20150515093418_create_comable_products.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093418_create_comable_products.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093419_create_comable_users.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093419_create_comable_users.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093420_create_comable_stocks.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093420_create_comable_stocks.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093421_create_comable_orders.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093421_create_comable_orders.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093422_create_comable_order_items.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093422_create_comable_order_items.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093423_create_comable_payment_methods.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093423_create_comable_payment_methods.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093424_create_comable_shipment_methods.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093424_create_comable_shipment_methods.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093425_create_comable_stores.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093425_create_comable_stores.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093426_create_comable_addresses.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093426_create_comable_addresses.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093427_create_comable_categories.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093427_create_comable_categories.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093428_create_comable_products_categories.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093428_create_comable_products_categories.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093429_create_comable_images.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093429_create_comable_images.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093430_create_comable_shipments.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093430_create_comable_shipments.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093431_create_comable_payments.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093431_create_comable_payments.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150515093432_create_comable_trackers.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150515093432_create_comable_trackers.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150716102335_create_comable_pages.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150716102335_create_comable_pages.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150716102336_create_comable_themes.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150716102336_create_comable_themes.comable.rb -------------------------------------------------------------------------------- /db/migrate/20150716102337_add_theme_id_to_comable_stores.comable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/migrate/20150716102337_add_theme_id_to_comable_stores.comable.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/public/500.html -------------------------------------------------------------------------------- /public/elecoma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/public/elecoma.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/public/robots.txt -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appirits/elecoma/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------