36件ヒット
[1-36件を表示]
(0.017秒)
キーワード
-
rake
/ gempackagetask (12) - rss (12)
- rubygems (12)
検索結果
-
rss (85.0)
-
RSS を扱うためのライブラリです。
...SS::Maker.make("1.0") do |maker|
maker.channel.about = "http://example.com/index.rdf"
maker.channel.title = "Example"
maker.channel.description = "Example Site"
maker.channel.link = "http://example.com/"
end
もし,
* http://example.com/article.htmlにある
* Sample Articl......SS::Maker.make("1.0") do |maker|
maker.channel.about = "http://example.com/index.rdf"
maker.channel.title = "Example"
maker.channel.description = "Example Site"
maker.channel.link = "http://example.com/"
item = maker.items.new_item
item.link = "http://example.com/article.htm......SS::Maker.make("1.0") do |maker|
maker.channel.about = "http://example.com/index.rdf"
maker.channel.title = "Example"
maker.channel.description = "Example Site"
maker.channel.link = "http://example.com/"
maker.items.new_item do |item|
item.link = "http://example.com/articl... -
rubygems (13.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...hors = ['Hello Author']
s.email = 'hello_author@example.com'
s.homepage = 'http://example.com/hello/'
s.description = 'hello description'
end
//}
: name
この Gem の名前を指定します。
: version
この Gem のバージョンを指定します......s.authors = ['Hello Author']
s.email = 'hello@example.com'
s.homepage = 'http://example.com/hello'
s.description = 'hello description'
end
//}
ライブラリの例に加えて executables を追加しています。
また、以下のように Rakefil... -
rake
/ gempackagetask (7.0) -
Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
...s.version = PKG_VERSION
s.requirements << 'none'
s.require_path = 'lib'
s.autorequire = 'rake'
s.files = PKG_FILES
s.description = <<EOF
Rake is a Make-like program implemented in Ruby. Tasks
and dependencies are specified in standard Ruby syntax.
EOF
end...