├── .gitignore ├── .travis.yml ├── Gemfile ├── README.md ├── Rakefile ├── lib ├── sprockets_better_errors.rb └── sprockets_better_errors │ ├── sprockets_rails_helper.rb │ ├── sprockets_railtie.rb │ └── version.rb ├── sprockets_better_errors.gemspec └── test ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── no_erb_tag_error.js │ │ │ ├── no_errors.js │ │ │ ├── no_reference_error.js.erb │ │ │ ├── not_precompiled.js │ │ │ └── welcome.js.coffee │ │ └── stylesheets │ │ │ └── application.css │ ├── controllers │ │ ├── application_controller.rb │ │ └── foo_controller.rb │ ├── helpers │ │ └── application_helper.rb │ └── views │ │ ├── foo │ │ ├── index.html │ │ ├── no_erb_tag_error.html.erb │ │ ├── no_errors.html.erb │ │ ├── no_reference_error.html.erb │ │ └── precompile_error.html.erb │ │ └── layouts │ │ └── application.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 │ ├── locales │ │ └── en.yml │ └── routes.rb ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── cinco.png │ ├── favicon.ico │ └── index.html ├── script │ └── rails └── tmp │ └── capybara │ ├── capybara-201311081652534466693170.html │ ├── capybara-201311081654135123748192.html │ ├── capybara-201311081656053021254170.html │ ├── capybara-201311081656457051701013.html │ ├── capybara-201311081659485877638897.html │ ├── capybara-201311081700172970244208.html │ ├── capybara-201311081700599079106420.html │ ├── capybara-201311081701386395720887.html │ ├── capybara-201311081710273253101711.html │ ├── capybara-20131108171106624789610.html │ ├── capybara-201311081712048792320330.html │ ├── capybara-201311081712211232801645.html │ ├── capybara-201311081713141534596918.html │ ├── capybara-201311081713239549389443.html │ ├── capybara-201311081713578623637052.html │ ├── capybara-20131108171444164374684.html │ ├── capybara-201311081715138372476507.html │ ├── capybara-201311091505244823849905.html │ ├── capybara-201311091530174187311595.html │ ├── capybara-201311091608397964104129.html │ ├── capybara-20131109160958397538938.html │ └── capybara-201311091626051738950286.html ├── integration └── precompile_raise_test.rb ├── route_inspector_test.rb ├── support └── integration_case.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.gem 3 | Gemfile.lock 4 | tmp/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/sprockets_better_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/lib/sprockets_better_errors.rb -------------------------------------------------------------------------------- /lib/sprockets_better_errors/sprockets_rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/lib/sprockets_better_errors/sprockets_rails_helper.rb -------------------------------------------------------------------------------- /lib/sprockets_better_errors/sprockets_railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/lib/sprockets_better_errors/sprockets_railtie.rb -------------------------------------------------------------------------------- /lib/sprockets_better_errors/version.rb: -------------------------------------------------------------------------------- 1 | module SprocketsBetterErrors 2 | VERSION = "0.0.5" 3 | end 4 | -------------------------------------------------------------------------------- /sprockets_better_errors.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/sprockets_better_errors.gemspec -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/no_erb_tag_error.js: -------------------------------------------------------------------------------- 1 | a = <%= 1 + 1 %>; -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/no_errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/app/assets/javascripts/no_errors.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/no_reference_error.js.erb: -------------------------------------------------------------------------------- 1 | var foo = '<%= asset_path("application.css") %>'; -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/not_precompiled.js: -------------------------------------------------------------------------------- 1 | var a = 1+1; 2 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/welcome.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/app/assets/javascripts/welcome.js.coffee -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/foo_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/app/controllers/foo_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/views/foo/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/foo/no_erb_tag_error.html.erb: -------------------------------------------------------------------------------- 1 | <%= asset_path("no_erb_tag_error.js") %> 2 | -------------------------------------------------------------------------------- /test/dummy/app/views/foo/no_errors.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/app/views/foo/no_errors.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/foo/no_reference_error.html.erb: -------------------------------------------------------------------------------- 1 | <%= asset_path("no_reference_error.js") %> -------------------------------------------------------------------------------- /test/dummy/app/views/foo/precompile_error.html.erb: -------------------------------------------------------------------------------- 1 | <%= asset_path("not_precompiled.js") %> 2 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/cinco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/public/cinco.png -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/index.html: -------------------------------------------------------------------------------- 1 | home -------------------------------------------------------------------------------- /test/dummy/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/script/rails -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081652534466693170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081652534466693170.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081654135123748192.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081654135123748192.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081656053021254170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081656053021254170.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081656457051701013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081656457051701013.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081659485877638897.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081659485877638897.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081700172970244208.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081700172970244208.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081700599079106420.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081700599079106420.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081701386395720887.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081701386395720887.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081710273253101711.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081710273253101711.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-20131108171106624789610.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-20131108171106624789610.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081712048792320330.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081712048792320330.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081712211232801645.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081712211232801645.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081713141534596918.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081713141534596918.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081713239549389443.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081713239549389443.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081713578623637052.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081713578623637052.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-20131108171444164374684.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-20131108171444164374684.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311081715138372476507.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311081715138372476507.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311091505244823849905.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311091505244823849905.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311091530174187311595.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311091530174187311595.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311091608397964104129.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311091608397964104129.html -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-20131109160958397538938.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/tmp/capybara/capybara-201311091626051738950286.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/dummy/tmp/capybara/capybara-201311091626051738950286.html -------------------------------------------------------------------------------- /test/integration/precompile_raise_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/integration/precompile_raise_test.rb -------------------------------------------------------------------------------- /test/route_inspector_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/route_inspector_test.rb -------------------------------------------------------------------------------- /test/support/integration_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/support/integration_case.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schneems/sprockets_better_errors/HEAD/test/test_helper.rb --------------------------------------------------------------------------------