Sha256: 56b09ff31a7cd8409836b6af7e0f50ea99b94e34c71c26ae21b21bb6ce72d128
Contents?: true
Size: 490 Bytes
Versions: 1
Compression:
Stored size: 490 Bytes
Contents
module ScrumLint module Configuration def self.new OpenStruct.new( board_name: 'Eng: Current', task_list_names: ['Planned', 'This Sprint', 'Doing', 'In Review'], done_list_matcher: /^Done.*$/, project_list_names: ['Active Projects'], ignored_list_names: %w(Emergent), trello_developer_public_key: ENV.fetch('TRELLO_DEVELOPER_PUBLIC_KEY'), trello_member_token: ENV.fetch('TRELLO_MEMBER_TOKEN'), ) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
scrum_lint-0.0.1 | lib/scrum_lint/configuration.rb |