We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b359f commit 25a6866Copy full SHA for 25a6866
lib/critical_path_css/css_fetcher.rb
@@ -20,7 +20,15 @@ def fetch_route(route)
20
protected
21
22
def css_for_route(route)
23
- Phantomjs.run(PENTHOUSE_PATH, @config.base_url + route, @config.css_path)
+ url = @config.base_url + route
24
+
25
+ Phantomjs.run(
26
+ '--ignore-ssl-errors=true',
27
+ '--ssl-protocol=tlsv1',
28
+ PENTHOUSE_PATH,
29
+ url,
30
+ @config.css_path
31
+ )
32
end
33
34
lib/critical_path_css/rails/version.rb
@@ -1,6 +1,6 @@
1
module CriticalPathCSS
2
module Rails
3
- VERSION = '0.3.0'
+ VERSION = '0.3.1'
4
PENTHOUSE_VERSION = '0.3.4'
5
6
0 commit comments