Class: GGem::Gem
- Inherits:
-
Object
- Object
- GGem::Gem
- Defined in:
- lib/ggem/gem.rb
Constant Summary collapse
- NoNameError =
Class.new(ArgumentError)
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#root_path ⇒ Object
readonly
Returns the value of attribute root_path.
Instance Method Summary collapse
-
#initialize(path, name) ⇒ Gem
constructor
A new instance of Gem.
- #module_name ⇒ Object
- #path ⇒ Object
- #ruby_name ⇒ Object
- #save! ⇒ Object
Constructor Details
#initialize(path, name) ⇒ Gem
Returns a new instance of Gem.
13 14 15 16 |
# File 'lib/ggem/gem.rb', line 13 def initialize(path, name) raise NoNameError if name.to_s.empty? @root_path, self.name = path, name end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
11 12 13 |
# File 'lib/ggem/gem.rb', line 11 def name @name end |
#root_path ⇒ Object (readonly)
Returns the value of attribute root_path.
11 12 13 |
# File 'lib/ggem/gem.rb', line 11 def root_path @root_path end |
Instance Method Details
#module_name ⇒ Object
31 32 33 34 35 36 37 |
# File 'lib/ggem/gem.rb', line 31 def module_name transforms = { "_" => "", "-" => "", } @module_name ||= transform_name(transforms, &:capitalize) end |
#path ⇒ Object
23 24 25 |
# File 'lib/ggem/gem.rb', line 23 def path File.join(@root_path, @name) end |
#ruby_name ⇒ Object
39 40 41 |
# File 'lib/ggem/gem.rb', line 39 def ruby_name @ruby_name ||= transform_name(&:downcase) end |