├── .gitignore ├── .groc.json ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── lib ├── rails-dev-tweaks.rb └── rails_dev_tweaks │ ├── configuration.rb │ ├── granular_autoload │ ├── matchers │ │ ├── all_matcher.rb │ │ ├── asset_matcher.rb │ │ ├── forced_matcher.rb │ │ ├── path_matcher.rb │ │ └── xhr_matcher.rb │ └── middleware.rb │ ├── railtie.rb │ └── version.rb └── rails-dev-tweaks.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | 6 | -------------------------------------------------------------------------------- /.groc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/.groc.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /lib/rails-dev-tweaks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails-dev-tweaks.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails_dev_tweaks/configuration.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/granular_autoload/matchers/all_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails_dev_tweaks/granular_autoload/matchers/all_matcher.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/granular_autoload/matchers/asset_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails_dev_tweaks/granular_autoload/matchers/asset_matcher.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/granular_autoload/matchers/forced_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails_dev_tweaks/granular_autoload/matchers/forced_matcher.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/granular_autoload/matchers/path_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails_dev_tweaks/granular_autoload/matchers/path_matcher.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/granular_autoload/matchers/xhr_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails_dev_tweaks/granular_autoload/matchers/xhr_matcher.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/granular_autoload/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails_dev_tweaks/granular_autoload/middleware.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/lib/rails_dev_tweaks/railtie.rb -------------------------------------------------------------------------------- /lib/rails_dev_tweaks/version.rb: -------------------------------------------------------------------------------- 1 | module RailsDevTweaks 2 | VERSION = '1.2.0' 3 | end 4 | -------------------------------------------------------------------------------- /rails-dev-tweaks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavii/rails-dev-tweaks/HEAD/rails-dev-tweaks.gemspec --------------------------------------------------------------------------------