Skip to content

Fix rails autoload issue #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 29, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2015-10-20 18:42:42 -0500 using RuboCop version 0.34.1.
# on 2015-10-29 13:19:55 -0500 using RuboCop version 0.34.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Expand All @@ -10,3 +10,9 @@
# Configuration parameters: AllowURI, URISchemes.
Metrics/LineLength:
Max: 91

# Offense count: 1
# Configuration parameters: Exclude.
Style/FileName:
Exclude:
- 'lib/critical-path-css-rails.rb'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ bundle install
Run the generator to install the rake task and configuration file:

```
rails generator critical_path_css:install
rails generate critical_path_css:install
```

The generator adds the following files:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/critical_path_css/rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module CriticalPathCSS
module Rails
VERSION = '0.2.1'
VERSION = '0.2.2'
PENTHOUSE_VERSION = '0.3.4'
end
end
2 changes: 1 addition & 1 deletion lib/tasks/critical_path_css.rake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'critical_path_css_rails'
require 'critical-path-css-rails'

namespace :critical_path_css do
desc 'Generate critical CSS for the routes defined'
Expand Down