Class: FlutterRb::Podspec
- Inherits:
-
Object
- Object
- FlutterRb::Podspec
- Defined in:
- lib/flutter_rb/project/specs/ios/podspec.rb
Overview
Podspec representation
Instance Attribute Summary collapse
-
#authors ⇒ Object
readonly
Returns the value of attribute authors.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize(path, name, version, authors, source) ⇒ Podspec
constructor
A new instance of Podspec.
Constructor Details
#initialize(path, name, version, authors, source) ⇒ Podspec
Returns a new instance of Podspec.
6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/flutter_rb/project/specs/ios/podspec.rb', line 6 def initialize( path, name, version, , source ) @path = path @name = name @version = version = @source = source end |
Instance Attribute Details
#authors ⇒ Object (readonly)
Returns the value of attribute authors.
20 21 22 |
# File 'lib/flutter_rb/project/specs/ios/podspec.rb', line 20 def end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
20 21 22 |
# File 'lib/flutter_rb/project/specs/ios/podspec.rb', line 20 def name @name end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
20 21 22 |
# File 'lib/flutter_rb/project/specs/ios/podspec.rb', line 20 def path @path end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
20 21 22 |
# File 'lib/flutter_rb/project/specs/ios/podspec.rb', line 20 def source @source end |
#version ⇒ Object (readonly)
Returns the value of attribute version.
20 21 22 |
# File 'lib/flutter_rb/project/specs/ios/podspec.rb', line 20 def version @version end |