lib/octopussy.rb in octopussy-0.2.3 vs lib/octopussy.rb in octopussy-0.2.4
- old
+ new
@@ -11,10 +11,12 @@
require 'octopussy/event'
require 'octopussy/client'
module Octopussy
extend SingleForwardable
+
+ VERSION = "0.2.4".freeze
class OctopussyError < StandardError
attr_reader :data
def initialize(data)
@@ -52,6 +54,9 @@
# Trees
def_delegators :client, :tree, :blob, :raw
# Commits
def_delegators :client, :list_commits, :commit
+
+ # Timeline
+ def_delegators :client, :public_timeline
end