ricogen 0.4 → 0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/templates/Gemfile +1 -0
- data/templates/_config.rb +2 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.5
|
data/templates/Gemfile
CHANGED
data/templates/_config.rb
CHANGED
@@ -39,7 +39,7 @@ SANITIZE_CONFIG = {
|
|
39
39
|
}
|
40
40
|
|
41
41
|
|
42
|
-
Rails.application.config.session_store :cookie_store, :key => AppConfig.session_key
|
42
|
+
Rails.application.config.session_store :cookie_store, :key => AppConfig.session_key#, :domain => :all
|
43
43
|
Rails.application.config.secret_token = AppConfig.session_secret
|
44
44
|
|
45
45
|
ActionMailer::Base.default_url_options[:host] = AppConfig.domain
|
@@ -47,3 +47,4 @@ ActionMailer::Base.default_url_options[:host] = AppConfig.domain
|
|
47
47
|
if File.exist?(Rails.root + "VERSION")
|
48
48
|
AppConfig.version = File.read(Rails.root + "VERSION")
|
49
49
|
end
|
50
|
+
|