Sha256: 6143274771ccf54bc79855b1e2a7e61e9b888176ff01ea026e24a22325186c63

Contents?: true

Size: 990 Bytes

Versions: 1

Compression:

Stored size: 990 Bytes

Contents

# Common settings of the global session (that apply to all Rails environments)
# are listed here. These may be overidden in the environment-specific section.
common:
  attributes:
    # Signed attributes of the global session
    signed:
    - user
    # Untrusted attributes of the global session
    insecure:
    - account
  # Enable local session integration in order to use the ActionController
  # method #session to access both local AND global session state, with
  # global attributes always taking precedence over local attributes.
  integrated: true

# Test/spec runs
test:
  timeout: 900
  cookie:
    name: __<%= app_name %>_test
    domain: localhost
  trust:
  - test

# Development mode
development:
  timeout: 3600
  cookie:
    name: __<%= app_name %>_development
    domain: localhost
  trust:
  - development
  - production

# Production mode
production:
  timeout: 3600
  cookie:
    name: __<%= app_name %>_global
    domain: <%= app_domain %>
  trust:
  - production

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
has_global_session-0.8.1 lib/generators/global_session_config/templates/global_session.yml.erb