hugger 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b4d808260564a2c9d055b8c0b0ff4cc445addd2a
4
- data.tar.gz: 95b76893782f82463a78fc18f45e140f725af7f3
3
+ metadata.gz: ed48a8a868293ffe3009eea02e7553ef8ff8e852
4
+ data.tar.gz: bafd68e0a4d7a7b374af00f219e7c6ccefb60ec3
5
5
  SHA512:
6
- metadata.gz: 63fd2524e857f327599fed9858e8e291d5e9adb8a41f41fae93a666b424fc4ddd249fa92b371d206b9a59fbdbc6a2e3e755c3ee0aa88c42aee8bebc69f4284ce
7
- data.tar.gz: 9c11490bee6a55356e1ca3b83828c58ada1ee1423f2ecc25e6672b3b5eec66351f92b71b06b62685545be8c266f771fe5132995784f8dd6199fe6221ba3affa2
6
+ metadata.gz: 80eee18e7425512c04835f88085885363f87f9695801cc14fab17b4c55f113bb77594af4bd84dbd1a220818f0b94e4ea40d82a8cb91e09c131ad0417fa9c0675
7
+ data.tar.gz: 580a4b92613fc1d1a60cdaa2823a50d05618f9ffaab57ccd565584d6e376f30cbd497ccb2df73fe9bc8dbe7c78f52088d5ceaa89974f81c7191713fd017b5fc9
data/README.md CHANGED
@@ -21,7 +21,7 @@ gem 'hugger'
21
21
  require 'hugger'
22
22
 
23
23
  class SampleClass
24
- include Hugger::Decoratable
24
+ include Hugger::Haggable
25
25
 
26
26
  hug_string :wrap
27
27
  def wrap(a)
@@ -1,7 +1,7 @@
1
1
  module Hugger
2
2
  # String
3
3
  # @since 0.0.1
4
- module Decoratable
4
+ module Huggable
5
5
  def self.included(klass)
6
6
  super
7
7
  klass.extend(ClassMethods)
@@ -17,7 +17,7 @@ module Hugger
17
17
  end
18
18
  end
19
19
 
20
- # Decoratable class methods
20
+ # Haggable class methods
21
21
  # @since 0.0.1
22
22
  module ClassMethods
23
23
  # Decorates object from given method using the Hugger classes
@@ -1,3 +1,3 @@
1
1
  module Hugger
2
- VERSION = '0.0.1'.freeze
2
+ VERSION = '0.0.2'.freeze
3
3
  end
data/lib/hugger.rb CHANGED
@@ -3,7 +3,7 @@ require 'hugger/version'
3
3
  require 'dry/inflector'
4
4
  require 'hugger/object'
5
5
  require 'hugger/string'
6
- require 'hugger/decoratable'
6
+ require 'hugger/huggable'
7
7
 
8
8
  # Module
9
9
  # @since 0.0.1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hugger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akira Takahashi
@@ -174,7 +174,7 @@ files:
174
174
  - bin/setup
175
175
  - hagoromo.gemspec
176
176
  - lib/hugger.rb
177
- - lib/hugger/decoratable.rb
177
+ - lib/hugger/huggable.rb
178
178
  - lib/hugger/object.rb
179
179
  - lib/hugger/string.rb
180
180
  - lib/hugger/version.rb