Class: Ryb::Application
- Inherits:
-
Object
- Object
- Ryb::Application
- Includes:
- Properties::Architectures, Properties::Configurations, Properties::Defines, Properties::Dependencies, Properties::Files, Properties::Flags, Properties::Named, Properties::Paths, Properties::Targets
- Defined in:
- lib/ryb/application.rb
Instance Method Summary collapse
-
#initialize(name, opts = {}) {|_self| ... } ⇒ Application
constructor
A new instance of Application.
Methods included from Properties::Configurations
Methods included from Properties::Targets
Methods included from Properties::Architectures
Methods included from Properties::Dependencies
Methods included from Properties::Files
Methods included from Properties::Paths
Methods included from Properties::Flags
Methods included from Properties::Defines
Methods included from Properties::Named
Constructor Details
#initialize(name, opts = {}) {|_self| ... } ⇒ Application
Returns a new instance of Application.
19 20 21 22 |
# File 'lib/ryb/application.rb', line 19 def initialize(name, opts={}) @name = Name.new(name, opts[:pretty]) yield self if block_given? end |