Sha256: dad95a77d058468faa0924e0d730d33a9c499ff361645852a8446f3803a156bf
Contents?: true
Size: 511 Bytes
Versions: 11
Compression:
Stored size: 511 Bytes
Contents
module RGitFlow module Tasks class Release autoload :Start, 'rgitflow/tasks/release/start' autoload :Finish, 'rgitflow/tasks/release/finish' class << self attr_accessor :instance def install_tasks(opts = {}) new(opts[:git]).install end end attr_reader :git def initialize(git = nil) @git = git || Git.open(Pathname.pwd) end def install Start.new @git Finish.new @git end end end end
Version data entries
11 entries across 11 versions & 1 rubygems