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     
60     def self.licenses=(ary)
61       @@licenses = ary
62     end
63     
64     def self.licenses
65       @@licenses || {}
66     end
67     
68     def self.speech_balloons=(ary)
69       @@speech_balloons = ary
70     end
71     
72     def self.speech_balloons
73       @@speech_balloons || {}
74     end
75      
76     def self.writing_formats=(ary)
77       @@writing_formats = ary
78     end
79     
80     def self.writing_formats
81       @@writing_formats || {}
82     end
83     
84     def self.elements=(ary)
85       @@elements = ary
86     end
87     
88     def self.elements
89       @@elements || {}
90     end
91     
92     def self.manifest=(arg)
93       @@manifest = Pettanr::Manifest.new arg
94     end
95     
96     def self.manifest
97       @@manifest
98     end
99   end
100   
101   def manifest
102     Application::manifest
103   end
104   
105 end
106   
107 Pettanr::Application.licenses = YAML.load(open(Rails.root + 'config/license.yml').read)
108 Pettanr::Application.speech_balloons = YAML.load(open(Rails.root + 'config/speech_balloon.yml').read)
109 Pettanr::Application.writing_formats = YAML.load(open(Rails.root + 'config/writing_format.yml').read)
110 Pettanr::Application.elements = YAML.load(open(Rails.root + 'config/element.yml').read)
111 MagicNumber = YAML.load(open(Rails.root + 'config/magic_number.yml').read)
112 MagicNumber['test_layout'] = if File.exist? Rails.root + 'config/test_layout'
113   'test'
114 else
115   false
116 end
117 MagicNumber['profile'] = JSON.parse(open(Rails.root + 'config/profile.json').read).first[1] #strip profile body
118 Pettanr::Application.manifest = JSON.parse(open(Rails.root + 'public/manifest.json').read)
119
120 y = YAML.load(open(Rails.root + 'config/picture_io.yml').read)
121 require y[Rails.env]["adapter"]
122 pio = PictureIO.const_get y[Rails.env]["io"]
123 PictureIO.setup do |config|
124   config.original_picture_io = pio.new y[Rails.env]["original_picture"]
125   config.resource_picture_io = pio.new y[Rails.env]["resource_picture"]
126   config.picture_io = pio.new y[Rails.env]["picture"]
127   config.system_picture_io = pio.new y[Rails.env]["system_picture"]
128 end
129 module ActiveRecord
130   class Forbidden < ActiveRecordError
131   end
132 end
133
134 module Pettanr
135   TestLayout = false
136   class BadRequest < StandardError
137   end
138   class NotWork < StandardError
139   end
140 end
141