Changed Tracks version in environment.rb.tmpl to 1.7. Fixes #808.

This commit is contained in:
bsag 2008-12-26 14:15:37 +00:00
parent d5b35a0fed
commit 94cd8dc077

View file

@ -1,111 +1,111 @@
# Be sure to restart your webserver when you modify this file. # Be sure to restart your webserver when you modify this file.
# Uncomment below to force Rails into production mode # Uncomment below to force Rails into production mode
# (Use only when you can't set environment variables through your web/app server) # (Use only when you can't set environment variables through your web/app server)
# ENV['RAILS_ENV'] = 'production' # ENV['RAILS_ENV'] = 'production'
# Bootstrap the Rails environment, frameworks, and default configuration # Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot') require File.join(File.dirname(__FILE__), 'boot')
# This is the 'salt' to add to the password before it is encrypted # This is the 'salt' to add to the password before it is encrypted
# You need to change this to something unique for yourself # You need to change this to something unique for yourself
SALT = "change-me" SALT = "change-me"
class Rails::Configuration class Rails::Configuration
attr_accessor :action_web_service attr_accessor :action_web_service
end end
# Leave this alone or set it to one or more of ['database', 'ldap', 'open_id']. # Leave this alone or set it to one or more of ['database', 'ldap', 'open_id'].
# If you choose ldap, see the additional configuration options further down. # If you choose ldap, see the additional configuration options further down.
AUTHENTICATION_SCHEMES = ['database'] AUTHENTICATION_SCHEMES = ['database']
Rails::Initializer.run do |config| Rails::Initializer.run do |config|
# Skip frameworks you're not going to use # Skip frameworks you're not going to use
# config.frameworks -= [ :action_web_service, :action_mailer ] # config.frameworks -= [ :action_web_service, :action_mailer ]
config.frameworks += [ :action_web_service] config.frameworks += [ :action_web_service]
config.action_web_service = Rails::OrderedOptions.new config.action_web_service = Rails::OrderedOptions.new
config.load_paths += %W( #{RAILS_ROOT}/app/apis ) config.load_paths += %W( #{RAILS_ROOT}/app/apis )
config.gem "highline" config.gem "highline"
config.action_controller.use_accept_header = true config.action_controller.use_accept_header = true
# Add additional load paths for your own custom dirs # Add additional load paths for your own custom dirs
# config.load_paths += %W( #{RAILS_ROOT}/app/services ) # config.load_paths += %W( #{RAILS_ROOT}/app/services )
# Force all environments to use the same logger level # Force all environments to use the same logger level
# (by default production uses :info, the others :debug) # (by default production uses :info, the others :debug)
# config.log_level = :debug # config.log_level = :debug
# Use the database for sessions instead of the file system # Use the database for sessions instead of the file system
# (create the session table with 'rake create_sessions_table') # (create the session table with 'rake create_sessions_table')
config.action_controller.session_store = :active_record_store config.action_controller.session_store = :active_record_store
config.action_controller.session = { config.action_controller.session = {
:session_key => '_tracks_session_id', :session_key => '_tracks_session_id',
:secret => SALT * (30.0 / SALT.length).ceil #must be at least 30 characters :secret => SALT * (30.0 / SALT.length).ceil #must be at least 30 characters
} }
# Enable page/fragment caching by setting a file-based store # Enable page/fragment caching by setting a file-based store
# (remember to create the caching directory and make it readable to the application) # (remember to create the caching directory and make it readable to the application)
# config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache" # config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
# Activate observers that should always be running # Activate observers that should always be running
# config.active_record.observers = :cacher, :garbage_collector # config.active_record.observers = :cacher, :garbage_collector
# Make Active Record use UTC-base instead of local time # Make Active Record use UTC-base instead of local time
config.active_record.default_timezone = :utc config.active_record.default_timezone = :utc
# You''ll probably want to change this to the time zone of the computer where Tracks is running # You''ll probably want to change this to the time zone of the computer where Tracks is running
# run rake time:zones:local have Rails suggest time zone names on your system # run rake time:zones:local have Rails suggest time zone names on your system
config.time_zone = 'UTC' config.time_zone = 'UTC'
# Use Active Record's schema dumper instead of SQL when creating the test database # Use Active Record's schema dumper instead of SQL when creating the test database
# (enables use of different database adapters for development and test environments) # (enables use of different database adapters for development and test environments)
config.active_record.schema_format = :ruby config.active_record.schema_format = :ruby
# See Rails::Configuration for more options # See Rails::Configuration for more options
end end
# Add new inflection rules using the following format # Add new inflection rules using the following format
# (all these examples are active by default): # (all these examples are active by default):
# Inflector.inflections do |inflect| # Inflector.inflections do |inflect|
# inflect.plural /^(ox)$/i, '\1en' # inflect.plural /^(ox)$/i, '\1en'
# inflect.singular /^(ox)en/i, '\1' # inflect.singular /^(ox)en/i, '\1'
# inflect.irregular 'person', 'people' # inflect.irregular 'person', 'people'
# inflect.uncountable %w( fish sheep ) # inflect.uncountable %w( fish sheep )
# end # end
# Include your application configuration below # Include your application configuration below
require 'name_part_finder' require 'name_part_finder'
require 'tracks/todo_list' require 'tracks/todo_list'
require 'tracks/config' require 'tracks/config'
require 'tagging_extensions' # Needed for tagging-specific extensions require 'tagging_extensions' # Needed for tagging-specific extensions
require 'digest/sha1' #Needed to support 'rake db:fixtures:load' on some ruby installs: http://dev.rousette.org.uk/ticket/557 require 'digest/sha1' #Needed to support 'rake db:fixtures:load' on some ruby installs: http://dev.rousette.org.uk/ticket/557
require 'prototype_helper_extensions' require 'prototype_helper_extensions'
if (AUTHENTICATION_SCHEMES.include? 'ldap') if (AUTHENTICATION_SCHEMES.include? 'ldap')
require 'net/ldap' #requires ruby-net-ldap gem be installed require 'net/ldap' #requires ruby-net-ldap gem be installed
require 'simple_ldap_authenticator' require 'simple_ldap_authenticator'
SimpleLdapAuthenticator.ldap_library = 'net/ldap' SimpleLdapAuthenticator.ldap_library = 'net/ldap'
SimpleLdapAuthenticator.servers = %w'localhost' SimpleLdapAuthenticator.servers = %w'localhost'
SimpleLdapAuthenticator.use_ssl = false SimpleLdapAuthenticator.use_ssl = false
SimpleLdapAuthenticator.login_format = 'cn=%s,dc=example,dc=com' SimpleLdapAuthenticator.login_format = 'cn=%s,dc=example,dc=com'
end end
if (AUTHENTICATION_SCHEMES.include? 'open_id') if (AUTHENTICATION_SCHEMES.include? 'open_id')
#requires ruby-openid gem to be installed #requires ruby-openid gem to be installed
end end
# setting this to true will make the cookies only available over HTTPS # setting this to true will make the cookies only available over HTTPS
TRACKS_COOKIES_SECURE = false TRACKS_COOKIES_SECURE = false
tracks_version='1.7RC' tracks_version='1.7'
# comment out next two lines if you do not want (or can not) the date of the # comment out next two lines if you do not want (or can not) the date of the
# last git commit in the footer # last git commit in the footer
# info=`git log --pretty=format:"%ai" -1` # info=`git log --pretty=format:"%ai" -1`
# tracks_version=tracks_version + ' ('+info+')' # tracks_version=tracks_version + ' ('+info+')'
TRACKS_VERSION=tracks_version TRACKS_VERSION=tracks_version