# -*- encoding: utf-8 -*- config = "" config = ' module Charu class Config def initialize() # ホームページタイトル @home_title = "TestPage" # ホームページトップ @top_home_page = "http://hoge.com/hoge/index.html" # ホームページカテゴリー @home_category = ["Ruby", "Python", "Java"] # ホームページのdescription @home_description = "日々勉強中" # CSS Path @css_theme_path = "./css" # プライベートカテゴリー @Private_category = ["Private", "P", "★", "2ch"] # Change_Log_path @Change_Log_path = "./../Change_Log" # 一度に表示する記事数 @article_size = 50 # htmlの作成先 @www_html_out_path = "./www/" # FTPの設定 end end end ' # ディレクトリの確認 if Dir.exist?("./CharuConfig") == false then # ディレクトリの作成 Dir.mkdir('CharuConfig') end if File.exist?("./CharuConfig/CharuConfig.rb") == false then File.open("./CharuConfig/CharuConfig.rb", "w:utf-8") do |f| f.puts(config) end else require './CharuConfig/CharuConfig' end