Sha256: 8216fb8aebdbabc52607217ef18a31dcc9ca7cc32fd738541e06399ff6589f0b
Contents?: true
Size: 725 Bytes
Versions: 3
Compression:
Stored size: 725 Bytes
Contents
#Mona - 2ch library. #Copyright (C) 2011- masarakki <masaki@hisme.net> # #== How to access 2ch.net # #first, create instance of Board. #if you want to access to hayabusa2.2ch.net/news4vip, # board = Mona::Board.new('hayabusa2', 'news4vip') #then you can get list of Thread by # threads = board.threads #or if you know thread info, you can create Thread instance # thread = Mona::Thread.new(:board => Mona::Board.new('hayabusa2', 'news4vip'), :id => 101010101) # module Mona autoload :Client, 'mona/client' autoload :Board, 'mona/board' autoload :Thread, 'mona/thread' VERSION_MAJOR = 0 VERSION_MINOR = 1 VERSION_PATCH = 0 def self.version [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH].join('.') end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mona-0.2.1 | lib/mona.rb |
mona-0.2.0 | lib/mona.rb |
mona-0.1.0 | lib/mona.rb |