by shigemk2

当面は技術的なことしか書かない

1行目をタイトル、2行目以降を本文として読み込むテスト

はてなAPIを利用して投稿する - by shigemk2の続き

ちょっとこういう風に改造してみた。さっきのは失敗

lines = 0
title = ''
content = ''

open('index.txt') {|file|
  while l = file.gets
    if lines == 0
      title = l
    else
      content += l
    end
    lines += 1
  end
}

entry = Atom::Entry.new(
  :title => title,
  :updated => Time.now
)

entry.content = content
puts client.create_entry collection_uri, entry

テスト

テスト

テスト

テスト

テスト