Skip to content
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ By default cookie is set for 30 days, you can extend time to live with <code>:tt
#Rails 3 in config/application.rb
class Application < Rails::Application
...
config.middleware.use Rack::Affiliates, {:ttl => 3.months}
config.middleware.use Rack::Utm, {:ttl => 3.months}
...
end

Expand All @@ -73,7 +73,7 @@ The <code>:domain</code> option allows to customize cookie domain.
#Rails 3 in config/application.rb
class Application < Rails::Application
...
config.middleware.use Rack::Affiliates, :domain => '.example.org'
config.middleware.use Rack::Utm, :domain => '.example.org'
...
end

Expand Down