forked from jm/rails-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrack.rb
28 lines (25 loc) · 909 Bytes
/
rack.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# rack.rb
# template to setup a set of rack middlewares
# from Slava Mikerin
if yes?("Do you want to use Rack: google_analytics")
gem "ambethia-rack-google_analytics",
:require => "rack/google_analytics",
:add_source => "http://gems.github.com"
inject_into_file "config.ru", :before => "require" do
google_id = ask "enter your Google Analitycs UA-XXXXX number" || "UA-0000000-1"
'use Rack::GoogleAnalytics, :web_property_id => "' + google_id + '"'
end
end
#sets custom headers for each HTML5 feature the browser supports
if yes?("Do you want to use Rack: rack-html5")
gem 'rack-html5'
inject_into_file "config.ru", :before => "require" do
"\nuse Rack::Html5\n"
end
end
if yes?("Do you want to use Rack: rack-tidy")
gem 'rack-tidy', :require => 'rack/tidy'
inject_into_file "config.ru", :before => "require" do
"\nuse Rack::Tidy\n"
end
end