OSDN Git Service

t#31779:element lib
[pettanr/pettanr.git] / config / application.rb
index b9b64d6..22807c1 100644 (file)
@@ -17,7 +17,7 @@ if defined?(Bundler)
 end
 
 module Pettanr
-  VERSION = '0.5.4'
+  VERSION = '0.6.1'
   class Application < Rails::Application
     # Settings in config/environments/* take precedence over those specified here.
     # Application configuration should go into files in config/initializers
@@ -61,12 +61,30 @@ config.assets.initialize_on_precompile = false
     end
     
     def self.licenses
-      @@licenses
+      @@licenses || {}
+    end
+    
+    def self.speech_balloons=(ary)
+      @@speech_balloons = ary
+    end
+    
+    def self.speech_balloons
+      @@speech_balloons || {}
+    end
+    
+    def self.elements=(ary)
+      @@elements = ary
+    end
+    
+    def self.elements
+      @@elements || {}
     end
   end
 end
   
 Pettanr::Application.licenses = YAML.load(open(Rails.root + 'config/license.yml').read)
+Pettanr::Application.speech_balloons = YAML.load(open(Rails.root + 'config/speech_balloon.yml').read)
+Pettanr::Application.elements = YAML.load(open(Rails.root + 'config/element.yml').read)
 MagicNumber = YAML.load(open(Rails.root + 'config/magic_number.yml').read)
 MagicNumber['test_layout'] = if File.exist? Rails.root + 'config/test_layout'
   'test'
@@ -90,5 +108,7 @@ end
 
 module Pettanr
   TestLayout = false
+  class BadRequest < StandardError
+  end
 end