module Dawn::CLI::Release

Public Class Methods

add() click to toggle source

“Add a new release to the current app”

# File lib/dawn/cli/commands/release.rb, line 18
def self.add
  current_app.releases.create(release:{})
end
list() click to toggle source

“List all releases for the current app”

# File lib/dawn/cli/commands/release.rb, line 11
def self.list
  say format_releases(current_app.releases.all)
end