OSDN Git Service

temp
[pettanr/pettanr.git] / config / application.rb
1 require File.expand_path('../boot', __FILE__)
2
3 # Pick the frameworks you want:
4 require "active_record/railtie"
5 require "action_controller/railtie"
6 require "action_mailer/railtie"
7 require "active_resource/railtie"
8 require "sprockets/railtie"
9 # require "rails/test_unit/railtie"
10 require 'digest/md5'
11
12 if defined?(Bundler)
13   # If you precompile assets before deploying to production, use this line
14   Bundler.require(*Rails.groups(:assets => %w(development test)))
15   # If you want your assets lazily compiled in production, use this line
16   # Bundler.require(:default, :assets, Rails.env)
17 end
18 require "manifest"
19
20 module Pettanr
21   VERSION = '0.6.2'
22   class Application < Rails::Application
23     # Settings in config/environments/* take precedence over those specified here.
24     # Application configuration should go into files in config/initializers
25     # -- all .rb files in that directory are automatically loaded.
26 config.assets.initialize_on_precompile = false
27
28     # Custom directories with classes and modules you want to be autoloadable.
29     # config.autoload_paths += %W(#{config.root}/extras)
30
31     # Only load the plugins named here, in the order given (default is alphabetical).
32     # :all can be used as a placeholder for all plugins not explicitly named.
33     # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
34
35     # Activate observers that should always be running.
36     # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
37
38     # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
39     # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
40     # config.time_zone = 'Central Time (US & Canada)'
41
42     # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
43     config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}').to_s]
44     config.i18n.default_locale = :ja
45
46     # Configure the default encoding used in templates for Ruby 1.9.
47     config.encoding = "utf-8"
48
49     # Configure sensitive parameters which will be filtered from the log file.
50     config.filter_parameters += [:password]
51
52     # Enable the asset pipeline
53     config.assets.enabled = true
54
55     # Version of your assets, change this if you want to expire all your assets
56     config.assets.version = '1.0'
57     
58     config.autoload_paths += %W(#{config.root}/lib/validators)
59 =begin 
60     
61     def self.licenses=(ary)
62       @@licenses = ary
63     end
64     
65     def self.licenses
66       @@licenses || {}
67     end
68     
69     def self.speech_balloons=(ary)
70       @@speech_balloons = ary
71     end
72     
73     def self.speech_balloons
74       @@speech_balloons || {}
75     end
76      
77     def self.writing_formats=(ary)
78       @@writing_formats = ary
79     end
80     
81     def self.writing_formats
82       @@writing_formats || {}
83     end
84     
85     def self.elements=(ary)
86       @@elements = ary
87     end
88     
89     def self.elements
90       @@elements || {}
91     end
92 =end
93     
94     def self.manifest=(arg)
95       @@manifest = Pettanr::Manifest.new arg
96     end
97     
98     def self.manifest
99       @@manifest
100     end
101   end
102   
103   def manifest
104     Application::manifest
105   end
106   
107 end
108   
109 =begin 
110 Pettanr::Application.licenses = YAML.load(open(Rails.root + 'config/license.yml').read)
111 Pettanr::Application.speech_balloons = YAML.load(open(Rails.root + 'config/speech_balloon.yml').read)
112 Pettanr::Application.writing_formats = YAML.load(open(Rails.root + 'config/writing_format.yml').read)
113 Pettanr::Application.elements = YAML.load(open(Rails.root + 'config/element.yml').read)
114 =end
115 Pettanr::Application.manifest = JSON.parse(open(Rails.root + 'public/manifest.json').read)
116 MagicNumber = Pettanr::Application.manifest.magic_numbers
117 MagicNumber.merge! Pettanr::Application.manifest.select_items
118 MagicNumber['test_layout'] = if File.exist? Rails.root + 'config/test_layout'
119   'test'
120 else
121   false
122 end
123
124 y = YAML.load(open(Rails.root + 'config/picture_io.yml').read)
125 require y[Rails.env]["adapter"]
126 pio = PictureIO.const_get y[Rails.env]["io"]
127 PictureIO.setup do |config|
128   config.original_picture_io = pio.new y[Rails.env]["original_picture"]
129   config.resource_picture_io = pio.new y[Rails.env]["resource_picture"]
130   config.picture_io = pio.new y[Rails.env]["picture"]
131   config.system_picture_io = pio.new y[Rails.env]["system_picture"]
132 end
133 module ActiveRecord
134   class Forbidden < ActiveRecordError
135   end
136 end
137
138 module Pettanr
139   TestLayout = false
140   class BadRequest < StandardError
141   end
142   class NotWork < StandardError
143   end
144 end
145