Sha256: d4a1613af229f2debe7f9d6c519b7d57a5c5b00a204acbd58ccd5486c57968b8
Contents?: true
Size: 1.42 KB
Versions: 2
Compression:
Stored size: 1.42 KB
Contents
module TaskMapper::Provider # This is the Rally Provider for taskmapper module Rally include TaskMapper::Provider::Base # This is for cases when you want to instantiate using TaskMapper::Provider::Rally.new(auth) def self.new(auth = {}) TaskMapper.new(:rally, auth) end # Providers must define an authorize method. This is used to initialize and set authentication # parameters to access the API def authorize(auth = {}) @authentication ||= TaskMapper::Authenticator.new(auth) auth = @authentication if ((auth.url.nil? || auth.url.empty?) and (auth.username.nil? || auth.username.empty?) and (auth.password.nil? || auth.password.empty?)) raise "Please you should provide a Rally url, username and password" end TaskMapper::Provider::Rally.rally = RallyRestAPI.new(:username => auth.username, :password => auth.password, :base_url => auth.url) end # declare needed overloaded methods here def valid? begin TaskMapper::Provider::Rally.rally.find_all(:project).first true rescue false end end def self.rally=(rally_instance) @rally = rally_instance end def self.rally @rally end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
taskmapper-rally-0.4.0 | lib/provider/rally.rb |
taskmapper-rally-0.3.0 | lib/provider/rally.rb |