├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── keymaps └── rails-transporter.cson ├── lib ├── asset-finder-view.coffee ├── base-finder-view.coffee ├── dialog-view.coffee ├── file-opener.coffee ├── migration-finder-view.coffee ├── rails-transporter.coffee ├── rails-util.coffee └── view-finder-view.coffee ├── menus └── rails-transporter.cson ├── package.json ├── spec ├── fixtures │ ├── app │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── javascripts │ │ │ │ ├── application01.js │ │ │ │ ├── application02 │ │ │ │ │ └── common.js │ │ │ │ ├── blogs.js.coffee │ │ │ │ ├── dynamic_script.js.coffee.erb │ │ │ │ ├── entries.js.coffee │ │ │ │ ├── pure-js-blogs.js │ │ │ │ └── shared │ │ │ │ │ ├── common.js.coffee │ │ │ │ │ ├── pure-js-common.js │ │ │ │ │ └── subdir │ │ │ │ │ └── subdir.js.coffee │ │ │ └── stylesheets │ │ │ │ ├── application.css │ │ │ │ ├── application02 │ │ │ │ └── common.css │ │ │ │ ├── blogs.css.scss │ │ │ │ ├── entries.css.scss │ │ │ │ ├── pure-css-blogs.css │ │ │ │ ├── scaffolds.css.scss │ │ │ │ └── shared │ │ │ │ ├── common.css.scss │ │ │ │ └── pure-css-common.css │ │ ├── controllers │ │ │ ├── admin │ │ │ │ └── blogs_controller.rb │ │ │ ├── api │ │ │ │ └── blogs_controller.rb │ │ │ ├── application_controller.rb │ │ │ ├── blogs_controller.rb │ │ │ ├── concerns │ │ │ │ ├── .keep │ │ │ │ └── blog │ │ │ │ │ └── taggable.rb │ │ │ ├── entries_controller.rb │ │ │ ├── main_controller.rb │ │ │ └── top_controller.rb │ │ ├── helpers │ │ │ ├── application_helper.rb │ │ │ ├── blogs_helper.rb │ │ │ └── entries_helper.rb │ │ ├── mailers │ │ │ ├── .keep │ │ │ └── notification_mailer.rb │ │ ├── models │ │ │ ├── .keep │ │ │ ├── blog.rb │ │ │ ├── concerns │ │ │ │ ├── .keep │ │ │ │ └── searchable.rb │ │ │ └── entry.rb │ │ ├── services │ │ │ └── blog_post_analytics.rb │ │ ├── views │ │ │ ├── api │ │ │ │ └── blogs │ │ │ │ │ └── index.json.jbuilder │ │ │ ├── blogs │ │ │ │ ├── _form.html.erb │ │ │ │ ├── _form02.html.erb │ │ │ │ ├── edit.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ ├── index.json.jbuilder │ │ │ │ ├── new.html.erb │ │ │ │ ├── show.html.erb │ │ │ │ └── show.json.jbuilder │ │ │ ├── entries │ │ │ │ ├── _form.html.erb │ │ │ │ ├── edit.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ ├── index.json.jbuilder │ │ │ │ ├── new.html.erb │ │ │ │ ├── show.html.erb │ │ │ │ └── show.json.jbuilder │ │ │ ├── layouts │ │ │ │ ├── application.html.erb │ │ │ │ ├── special.html.erb │ │ │ │ └── top.html.erb │ │ │ ├── notification_mailer │ │ │ │ └── welcome.html.erb │ │ │ └── shared │ │ │ │ └── _form.html.erb │ │ └── workers │ │ │ └── blog_post_analytics_worker.rb │ ├── db │ │ └── migrate │ │ │ ├── 20140502021836_create_blogs.rb │ │ │ └── 20140512015127_create_entries.rb │ ├── lib │ │ └── assets │ │ │ ├── javascripts │ │ │ └── my_library.js │ │ │ └── stylesheets │ │ │ ├── my_style.css.scss │ │ │ └── pure_css_my_style.css │ ├── public │ │ ├── no_asset_pipeline.css │ │ └── no_asset_pipeline.js │ ├── spec │ │ ├── controllers │ │ │ └── blogs_controller_spec.rb │ │ ├── factories │ │ │ ├── blogs.rb │ │ │ └── entry.rb │ │ ├── helpers │ │ │ └── blogs_helper_spec.rb │ │ ├── models │ │ │ ├── blog_spec.rb │ │ │ └── entry_spec.rb │ │ ├── requests │ │ │ └── blogs_spec.rb │ │ ├── routing │ │ │ └── blogs_routing_spec.rb │ │ ├── services │ │ │ └── blog_post_analytics_spec.rb │ │ ├── spec_helper.rb │ │ ├── views │ │ │ └── blogs │ │ │ │ ├── edit.html.erb_spec.rb │ │ │ │ ├── index.html.erb_spec.rb │ │ │ │ ├── new.html.erb_spec.rb │ │ │ │ └── show.html.erb_spec.rb │ │ └── workers │ │ │ └── blog_post_analytics_worker_spec.rb │ ├── test │ │ ├── controllers │ │ │ └── blogs_controller_test.rb │ │ ├── helpers │ │ │ └── blogs_helper_test.rb │ │ ├── models │ │ │ └── blog_test.rb │ │ ├── services │ │ │ └── blog_post_analytics_test.rb │ │ └── workers │ │ │ └── blog_post_analytics_worker_test.rb │ └── vendor │ │ └── assets │ │ ├── javascripts │ │ ├── .keep │ │ └── jquery.popular_library.js │ │ └── stylesheets │ │ ├── .keep │ │ ├── jquery.popular_style.css.scss │ │ └── jquery.pure_css_popular_style.css └── rails-transporter-spec.coffee └── styles └── rails-transporter.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/rails-transporter.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/keymaps/rails-transporter.cson -------------------------------------------------------------------------------- /lib/asset-finder-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/lib/asset-finder-view.coffee -------------------------------------------------------------------------------- /lib/base-finder-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/lib/base-finder-view.coffee -------------------------------------------------------------------------------- /lib/dialog-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/lib/dialog-view.coffee -------------------------------------------------------------------------------- /lib/file-opener.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/lib/file-opener.coffee -------------------------------------------------------------------------------- /lib/migration-finder-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/lib/migration-finder-view.coffee -------------------------------------------------------------------------------- /lib/rails-transporter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/lib/rails-transporter.coffee -------------------------------------------------------------------------------- /lib/rails-util.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/lib/rails-util.coffee -------------------------------------------------------------------------------- /lib/view-finder-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/lib/view-finder-view.coffee -------------------------------------------------------------------------------- /menus/rails-transporter.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/menus/rails-transporter.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/package.json -------------------------------------------------------------------------------- /spec/fixtures/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/application01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/javascripts/application01.js -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/application02/common.js: -------------------------------------------------------------------------------- 1 | //= require jquery 2 | -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/blogs.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/javascripts/blogs.js.coffee -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/dynamic_script.js.coffee.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/javascripts/dynamic_script.js.coffee.erb -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/entries.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/javascripts/entries.js.coffee -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/pure-js-blogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/javascripts/pure-js-blogs.js -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/shared/common.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/javascripts/shared/common.js.coffee -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/shared/pure-js-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/javascripts/shared/pure-js-common.js -------------------------------------------------------------------------------- /spec/fixtures/app/assets/javascripts/shared/subdir/subdir.js.coffee: -------------------------------------------------------------------------------- 1 | # coffee in subdir 2 | -------------------------------------------------------------------------------- /spec/fixtures/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /spec/fixtures/app/assets/stylesheets/application02/common.css: -------------------------------------------------------------------------------- 1 | /* 2 | *= require_self 3 | */ 4 | -------------------------------------------------------------------------------- /spec/fixtures/app/assets/stylesheets/blogs.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/stylesheets/blogs.css.scss -------------------------------------------------------------------------------- /spec/fixtures/app/assets/stylesheets/entries.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/stylesheets/entries.css.scss -------------------------------------------------------------------------------- /spec/fixtures/app/assets/stylesheets/pure-css-blogs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/stylesheets/pure-css-blogs.css -------------------------------------------------------------------------------- /spec/fixtures/app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /spec/fixtures/app/assets/stylesheets/shared/common.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/stylesheets/shared/common.css.scss -------------------------------------------------------------------------------- /spec/fixtures/app/assets/stylesheets/shared/pure-css-common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/assets/stylesheets/shared/pure-css-common.css -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/admin/blogs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/controllers/admin/blogs_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/api/blogs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/controllers/api/blogs_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/blogs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/controllers/blogs_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/concerns/blog/taggable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/controllers/concerns/blog/taggable.rb -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/entries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/controllers/entries_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/main_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/controllers/main_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/app/controllers/top_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/controllers/top_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/fixtures/app/helpers/blogs_helper.rb: -------------------------------------------------------------------------------- 1 | module BlogsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/fixtures/app/helpers/entries_helper.rb: -------------------------------------------------------------------------------- 1 | module EntriesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/fixtures/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/mailers/notification_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/mailers/notification_mailer.rb -------------------------------------------------------------------------------- /spec/fixtures/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/models/blog.rb: -------------------------------------------------------------------------------- 1 | class Blog < ActiveRecord::Base 2 | include Searchable 3 | end 4 | -------------------------------------------------------------------------------- /spec/fixtures/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/app/models/concerns/searchable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/models/concerns/searchable.rb -------------------------------------------------------------------------------- /spec/fixtures/app/models/entry.rb: -------------------------------------------------------------------------------- 1 | class Entry < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/fixtures/app/services/blog_post_analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/services/blog_post_analytics.rb -------------------------------------------------------------------------------- /spec/fixtures/app/views/api/blogs/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/api/blogs/index.json.jbuilder -------------------------------------------------------------------------------- /spec/fixtures/app/views/blogs/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/blogs/_form.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/blogs/_form02.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/blogs/_form02.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/blogs/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/blogs/edit.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/blogs/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/blogs/index.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/blogs/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/blogs/index.json.jbuilder -------------------------------------------------------------------------------- /spec/fixtures/app/views/blogs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/blogs/new.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/blogs/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/blogs/show.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/blogs/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/blogs/show.json.jbuilder -------------------------------------------------------------------------------- /spec/fixtures/app/views/entries/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/entries/_form.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/entries/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/entries/edit.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/entries/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/entries/index.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/entries/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/entries/index.json.jbuilder -------------------------------------------------------------------------------- /spec/fixtures/app/views/entries/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/entries/new.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/entries/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/entries/show.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/entries/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/entries/show.json.jbuilder -------------------------------------------------------------------------------- /spec/fixtures/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/layouts/special.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/layouts/special.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/layouts/top.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/layouts/top.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/views/notification_mailer/welcome.html.erb: -------------------------------------------------------------------------------- 1 | welcome! 2 | -------------------------------------------------------------------------------- /spec/fixtures/app/views/shared/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/views/shared/_form.html.erb -------------------------------------------------------------------------------- /spec/fixtures/app/workers/blog_post_analytics_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/app/workers/blog_post_analytics_worker.rb -------------------------------------------------------------------------------- /spec/fixtures/db/migrate/20140502021836_create_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/db/migrate/20140502021836_create_blogs.rb -------------------------------------------------------------------------------- /spec/fixtures/db/migrate/20140512015127_create_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/db/migrate/20140512015127_create_entries.rb -------------------------------------------------------------------------------- /spec/fixtures/lib/assets/javascripts/my_library.js: -------------------------------------------------------------------------------- 1 | // it's my library 2 | -------------------------------------------------------------------------------- /spec/fixtures/lib/assets/stylesheets/my_style.css.scss: -------------------------------------------------------------------------------- 1 | // it's my scss file 2 | -------------------------------------------------------------------------------- /spec/fixtures/lib/assets/stylesheets/pure_css_my_style.css: -------------------------------------------------------------------------------- 1 | // it's my css file 2 | -------------------------------------------------------------------------------- /spec/fixtures/public/no_asset_pipeline.css: -------------------------------------------------------------------------------- 1 | // it's css in public directory 2 | -------------------------------------------------------------------------------- /spec/fixtures/public/no_asset_pipeline.js: -------------------------------------------------------------------------------- 1 | // it's in public directory 2 | -------------------------------------------------------------------------------- /spec/fixtures/spec/controllers/blogs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/controllers/blogs_controller_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/factories/blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/factories/blogs.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/factories/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/factories/entry.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/helpers/blogs_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/helpers/blogs_helper_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/models/blog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/models/blog_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/models/entry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/models/entry_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/requests/blogs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/requests/blogs_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/routing/blogs_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/routing/blogs_routing_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/services/blog_post_analytics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/services/blog_post_analytics_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/views/blogs/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/views/blogs/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/views/blogs/index.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/views/blogs/index.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/views/blogs/new.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/views/blogs/new.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/views/blogs/show.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/views/blogs/show.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/spec/workers/blog_post_analytics_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/spec/workers/blog_post_analytics_worker_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/test/controllers/blogs_controller_test.rb: -------------------------------------------------------------------------------- 1 | require "test_helper" 2 | 3 | describe BlogsController do 4 | end 5 | -------------------------------------------------------------------------------- /spec/fixtures/test/helpers/blogs_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/test/helpers/blogs_helper_test.rb -------------------------------------------------------------------------------- /spec/fixtures/test/models/blog_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/test/models/blog_test.rb -------------------------------------------------------------------------------- /spec/fixtures/test/services/blog_post_analytics_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/test/services/blog_post_analytics_test.rb -------------------------------------------------------------------------------- /spec/fixtures/test/workers/blog_post_analytics_worker_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/fixtures/test/workers/blog_post_analytics_worker_test.rb -------------------------------------------------------------------------------- /spec/fixtures/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/vendor/assets/javascripts/jquery.popular_library.js: -------------------------------------------------------------------------------- 1 | // it's popular library 2 | -------------------------------------------------------------------------------- /spec/fixtures/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/vendor/assets/stylesheets/jquery.popular_style.css.scss: -------------------------------------------------------------------------------- 1 | // it's popular scss file 2 | -------------------------------------------------------------------------------- /spec/fixtures/vendor/assets/stylesheets/jquery.pure_css_popular_style.css: -------------------------------------------------------------------------------- 1 | // it's popular css file 2 | -------------------------------------------------------------------------------- /spec/rails-transporter-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/spec/rails-transporter-spec.coffee -------------------------------------------------------------------------------- /styles/rails-transporter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmatsuda/rails-transporter/HEAD/styles/rails-transporter.less --------------------------------------------------------------------------------