critical-path-css-rails 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1a1d007d5a2b3ddad015852c79fa46b2f4848a42
4
- data.tar.gz: af3d944a516625a45d35592e9f2fe502ae5f7582
3
+ metadata.gz: 41ee413f93f720db2420191afc12a990841d9c58
4
+ data.tar.gz: 196a9f2f11a9b318ac93e3b4f21595d1b8277201
5
5
  SHA512:
6
- metadata.gz: 0a36f37b53c16686f15cec91ab5da1f23f012375b2496f57950eb2979c20c9cb7015252609de7788cf188dd27dfe1ef359bb525f81f54de527841d051e627501
7
- data.tar.gz: e3da5b537e8828ef9ba77f5e7965cd2949e7a3b403dec1dfcc94885958b9d2d67a72b7ced2ed8e9421c04a5fa60d094bb13ffe097a9b005295670189a31f23e7
6
+ metadata.gz: 9e224839c315a0054e866508c493536ed7cc7f3ffd7cc9fa950fccf5b0dc51b04f2c860fa18e8d8f0a31fa692f6e850df2e100a18db973c3c39bcf8f08823994
7
+ data.tar.gz: ac1399a538f9204d38b5cb8a7d638e2e6049467525f3afc0b91a178fc3660e3dec6d5a856a956e3aa9c5a8533ea819748085f53cdd297d17069082cec7ff8897
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2015-10-20 18:42:42 -0500 using RuboCop version 0.34.1.
3
+ # on 2015-10-29 13:19:55 -0500 using RuboCop version 0.34.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
@@ -10,3 +10,9 @@
10
10
  # Configuration parameters: AllowURI, URISchemes.
11
11
  Metrics/LineLength:
12
12
  Max: 91
13
+
14
+ # Offense count: 1
15
+ # Configuration parameters: Exclude.
16
+ Style/FileName:
17
+ Exclude:
18
+ - 'lib/critical-path-css-rails.rb'
data/README.md CHANGED
@@ -26,7 +26,7 @@ bundle install
26
26
  Run the generator to install the rake task and configuration file:
27
27
 
28
28
  ```
29
- rails generator critical_path_css:install
29
+ rails generate critical_path_css:install
30
30
  ```
31
31
 
32
32
  The generator adds the following files:
@@ -1,6 +1,6 @@
1
1
  module CriticalPathCSS
2
2
  module Rails
3
- VERSION = '0.2.1'
3
+ VERSION = '0.2.2'
4
4
  PENTHOUSE_VERSION = '0.3.4'
5
5
  end
6
6
  end
@@ -1,4 +1,4 @@
1
- require 'critical_path_css_rails'
1
+ require 'critical-path-css-rails'
2
2
 
3
3
  namespace :critical_path_css do
4
4
  desc 'Generate critical CSS for the routes defined'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: critical-path-css-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Misshore
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-20 00:00:00.000000000 Z
11
+ date: 2015-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: phantomjs
@@ -40,11 +40,11 @@ files:
40
40
  - README.md
41
41
  - critical-path-css-rails.gemspec
42
42
  - lib/config/critical_path_css.yml
43
+ - lib/critical-path-css-rails.rb
43
44
  - lib/critical_path_css/configuration.rb
44
45
  - lib/critical_path_css/css_fetcher.rb
45
46
  - lib/critical_path_css/rails/engine.rb
46
47
  - lib/critical_path_css/rails/version.rb
47
- - lib/critical_path_css_rails.rb
48
48
  - lib/generators/critical_path_css/install_generator.rb
49
49
  - lib/penthouse/penthouse.js
50
50
  - lib/tasks/critical_path_css.rake