my_wiki_generator 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/templates/config/environment.rb +57 -0
- metadata +3 -2
@@ -0,0 +1,57 @@
|
|
1
|
+
$KCODE='u'
|
2
|
+
|
3
|
+
# Be sure to restart your web server when you modify this file.
|
4
|
+
|
5
|
+
# Uncomment below to force Rails into production mode when
|
6
|
+
# you don't control web/app server and can't set it the proper way
|
7
|
+
# ENV['RAILS_ENV'] ||= 'production'
|
8
|
+
|
9
|
+
# Bootstrap the Rails environment, frameworks, and default configuration
|
10
|
+
require File.join(File.dirname(__FILE__), 'boot')
|
11
|
+
|
12
|
+
Rails::Initializer.run do |config|
|
13
|
+
# Settings in config/environments/* take precedence those specified here
|
14
|
+
|
15
|
+
# Skip frameworks you're not going to use
|
16
|
+
# config.frameworks -= [ :action_web_service, :action_mailer ]
|
17
|
+
|
18
|
+
# Add additional load paths for your own custom dirs
|
19
|
+
# config.load_paths += %W( #{RAILS_ROOT}/extras )
|
20
|
+
|
21
|
+
# Force all environments to use the same logger level
|
22
|
+
# (by default production uses :info, the others :debug)
|
23
|
+
# config.log_level = :debug
|
24
|
+
|
25
|
+
# Use the database for sessions instead of the file system
|
26
|
+
# (create the session table with 'rake create_sessions_table')
|
27
|
+
# config.action_controller.session_store = :active_record_store
|
28
|
+
|
29
|
+
# Enable page/fragment caching by setting a file-based store
|
30
|
+
# (remember to create the caching directory and make it readable to the application)
|
31
|
+
# config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
|
32
|
+
#config.action_controller.perform_caching = true
|
33
|
+
|
34
|
+
# Activate observers that should always be running
|
35
|
+
# config.active_record.observers = :cacher, :garbage_collector
|
36
|
+
|
37
|
+
# Make Active Record use UTC-base instead of local time
|
38
|
+
# config.active_record.default_timezone = :utc
|
39
|
+
|
40
|
+
# Use Active Record's schema dumper instead of SQL when creating the test database
|
41
|
+
# (enables use of different database adapters for development and test environments)
|
42
|
+
# config.active_record.schema_format = :ruby
|
43
|
+
|
44
|
+
# See Rails::Configuration for more options
|
45
|
+
end
|
46
|
+
|
47
|
+
# Add new inflection rules using the following format
|
48
|
+
# (all these examples are active by default):
|
49
|
+
# Inflector.inflections do |inflect|
|
50
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
51
|
+
# inflect.singular /^(ox)en/i, '\1'
|
52
|
+
# inflect.irregular 'person', 'people'
|
53
|
+
# inflect.uncountable %w( fish sheep )
|
54
|
+
# end
|
55
|
+
|
56
|
+
# Include your application configuration below
|
57
|
+
FIRST_VERSION = 1
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: my_wiki_generator
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date: 2006-05-
|
6
|
+
version: 0.0.3
|
7
|
+
date: 2006-05-08 00:00:00 +09:00
|
8
8
|
summary: "gem\x82\xF0RubyForge\x82\xC9\x93o\x98^\x82\xB5\x82\xC4\x82\xDD\x82\xE9"
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -116,6 +116,7 @@ files:
|
|
116
116
|
- templates/components/sidebar/sidebar
|
117
117
|
- templates/components/sidebar/sidebar_controller.rb
|
118
118
|
- templates/components/sidebar/sidebar/show.rhtml
|
119
|
+
- templates/config/environment.rb
|
119
120
|
- templates/config/routes.rb
|
120
121
|
- templates/db/migrate
|
121
122
|
- templates/db/migrate/001_my_wiki_migration.rb
|