before_hooks 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: 35dae4a64cc957dd77b40476a38990940c0a6006ffad173aebae8e8709ebe733
4
- data.tar.gz: 1b469cc134e5e982a412fbe31a0698d59031d1ca34aba8074fe5c0aaa96db921
3
+ metadata.gz: b2f2cdd14383db2598bebde8959c30020c33baa86ed26da76d6624d482992c83
4
+ data.tar.gz: 2f8e8958ff44ed06b97d73685fb60c49582bf420fd3b87c5eab6c80eabb8f93e
5
5
  SHA512:
6
- metadata.gz: 12deb1488fc1306020450895e135db69e97a5e6626d42e00591f4c111eecb3f72a2dd2713a2d17fce8c04b6256b16a2b7815dcf9067f7315abd41a61970affb3
7
- data.tar.gz: cea4f1b1094db8d5803ddc8a2921cba19e83c44478255298001c49372e8320506b9f4e22ab313bc543b64c78d6b47fabb5b10f68eea82efa8d62e0ff973da4b3
6
+ metadata.gz: 7694e0a74569504aa3e5904aaeae43705bba8cd0409efacfee5fbf4490a4deca74dc4152b1ed488055092e54fde87101b1604e1e64e979fbcf927927c8872ba2
7
+ data.tar.gz: f4fda542e6cd7d013116803c0816a310d2ad264e723afc4de6a40a32d1768576cf810e9870d24a77d6a69f5416c459cb55e89f55ac2d10f559b38d9f18aa9bcf
data/before_hooks.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ['jrpolidario@gmail.com']
11
11
 
12
12
  spec.summary = 'Adds `before_extended`, `before_included`, and `before_prepended` methods hooks which would be called before the standard `extended`, `included`, and `prepended` Ruby hooks, respectively.'
13
- spec.description = 'Especially useful when you require to "do" something just before the module gets `extended` or `included` to a module/class. In particular, in my specific case, I needed to "do" something if a specific method already exists in the `base` class.'
13
+ spec.description = 'Adds `before_extended`, `before_included`, and `before_prepended` methods hooks which would be called before the standard `extended`, `included`, and `prepended` Ruby hooks, respectively. Especially useful when you require to "do" something just before the module gets `extended` or `included` to a module/class. In particular, in my specific case, I needed to "do" something if a specific method already exists in the `base` class.'
14
14
  spec.homepage = 'https://github.com/jrpolidario/before_hooks'
15
15
  spec.license = 'MIT'
16
16
 
@@ -1,3 +1,3 @@
1
1
  module BeforeHooks
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: before_hooks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jules Roman Polidario
@@ -66,10 +66,12 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '10.0'
69
- description: Especially useful when you require to "do" something just before the
70
- module gets `extended` or `included` to a module/class. In particular, in my specific
71
- case, I needed to "do" something if a specific method already exists in the `base`
72
- class.
69
+ description: Adds `before_extended`, `before_included`, and `before_prepended` methods
70
+ hooks which would be called before the standard `extended`, `included`, and `prepended`
71
+ Ruby hooks, respectively. Especially useful when you require to "do" something just
72
+ before the module gets `extended` or `included` to a module/class. In particular,
73
+ in my specific case, I needed to "do" something if a specific method already exists
74
+ in the `base` class.
73
75
  email:
74
76
  - jrpolidario@gmail.com
75
77
  executables: []