summaryrefslogtreecommitdiff
path: root/lib/chef/dist.rb
blob: 51dd03e96556bddb53f7dcb9182aee89ff56baae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Chef
  class Dist
    # This class is not fully implemented, depending on it is not recommended!
    # When referencing a product directly, like Chef (Now Chef Infra)
    PRODUCT = "Chef Infra".freeze

    # The client's alias (chef-client)
    CLIENT = "chef-client".freeze

    # The chef executable, as in `chef gem install` or `chef generate cookbook`
    EXEC = "chef".freeze

    # product website address
    WEBSITE = "https://chef.io".freeze
  end
end