OSDN Git Service

add manifest
[pettanr/pettanr.git] / config / application.rb
index 4769151..39f4d58 100644 (file)
@@ -17,7 +17,7 @@ if defined?(Bundler)
 end
 
 module Pettanr
-  VERSION = '0.5.3'
+  VERSION = '0.6.2'
   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,52 @@ 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.writing_formats=(ary)
+      @@writing_formats = ary
+    end
+    
+    def self.writing_formats
+      @@writing_formats || {}
+    end
+    
+    def self.elements=(ary)
+      @@elements = ary
+    end
+    
+    def self.elements
+      @@elements || {}
+    end
+    
+    def self.manifest=(arg)
+      @@manifest = Manifest.new arg
+    end
+    
+    def self.manifest
+      @@manifest
+    end
+  end
+  
+  def manifest
+    Application::manifest
   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.writing_formats = YAML.load(open(Rails.root + 'config/writing_format.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'
@@ -74,6 +114,8 @@ else
   false
 end
 MagicNumber['profile'] = JSON.parse(open(Rails.root + 'config/profile.json').read).first[1] #strip profile body
+Pettanr::Application.manifest = JSON.parse(open(Rails.root + 'public/manifest.json').read)
+
 y = YAML.load(open(Rails.root + 'config/picture_io.yml').read)
 require y[Rails.env]["adapter"]
 pio = PictureIO.const_get y[Rails.env]["io"]
@@ -90,5 +132,9 @@ end
 
 module Pettanr
   TestLayout = false
+  class BadRequest < StandardError
+  end
+  class NotWork < StandardError
+  end
 end