lib/Charu/Config.rb in Charu-0.0.3 vs lib/Charu/Config.rb in Charu-0.0.4

- old
+ new

@@ -7,11 +7,11 @@ def initialize() # ホームページタイトル @home_title = "TestPage" # ホームページトップ - @top_home_page = "http://hoge.com/hoge/" + @top_home_page = "http://hoge.com/hoge/index.html" # ホームページカテゴリー @home_category = ["Ruby", "Python", "Java"] # ホームページのdescription @@ -27,18 +27,29 @@ @Change_Log_path = "./../Change_Log" # 一度に表示する記事数 @article_size = 50 + # htmlの作成先 + @www_html_out_path = "./www/" + + # FTPの設定 + end end end ' -if File.exist?("CharuConfig.rb") == false then - File.open("CharuConfig.rb", "w") do |f| +# ディレクトリの確認 +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' + require './CharuConfig/CharuConfig' end