solid_callback 1.0.0 → 1.0.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: 921e574702baf327a4d7c3f925f266ded194cac1ca8f3378a0a65a8d37665727
4
- data.tar.gz: 6cb662e52538824419e3b089c0e10f8af4571bd4712c492eb28c968736694092
3
+ metadata.gz: 156474c78517a93f787f3a7e9eee1b08dcdc2365841dfd847524676597d51775
4
+ data.tar.gz: 8babd15e0e484e862ec7f7a407b1318b809ef04eb19c896db2232f0ec392a539
5
5
  SHA512:
6
- metadata.gz: 1e489657dceb943f10aafbdbc05485589bda6627a3d0d2fb9fd8efc1277356aeb7606011830f6f139bbc029c4271decad67cdb8b6320d37039cf3aeb31e2ffcb
7
- data.tar.gz: c378f4c32879c3194e7736f497261396b5eb6cbefea55724a30751444dd91c2f07895d6865c8f45710a10502b016d568d7b88028f74eb90be8b888c38d8ee385
6
+ metadata.gz: 76fdedc6d541705bdb5f72b3ba14efec2bf150f8536183e848a69af1f299c210d02460027c887cb444a9762e7ecc53e16b51c83fdd91e93f74031e0fabd5b237
7
+ data.tar.gz: eb589a8af11b4537c20ed901f432c5a0c9b39e9d2820930e26701633ba60bf9a724e3d814dfe208cd7f5fee7969cc904196df6576b4b851ba3d14b6cb5f5f160
data/Gemfile CHANGED
@@ -8,3 +8,8 @@ gemspec
8
8
  gem "rake", "~> 13.0"
9
9
 
10
10
  gem "rspec", "~> 3.0"
11
+
12
+
13
+ group :development, :test do
14
+ gem 'yard'
15
+ end
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- solid_callback (0.1.0)
4
+ solid_callback (1.0.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -31,7 +31,7 @@ DEPENDENCIES
31
31
  rake (~> 13.0)
32
32
  rspec (~> 3.0)
33
33
  solid_callback!
34
- yard (~> 0.9)
34
+ yard
35
35
 
36
36
  BUNDLED WITH
37
37
  2.2.33
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # SolidCallback
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/solid_callback.svg)](https://badge.fury.io/rb/solid_callback)
4
- [![Build Status](https://github.com/gklsan/solid_callback/workflows/tests/badge.svg)](https://github.com/gklsan/solid_callback/actions)
4
+ [![Ruby](https://github.com/gklsan/solid_callback/actions/workflows/ruby.yml/badge.svg)](https://github.com/gklsan/solid_callback/actions/workflows/ruby.yml)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
6
 
7
7
  SolidCallback adds powerful method interception capabilities to your Ruby classes with near-zero overhead. Clean, flexible, and unobtrusive.
@@ -20,19 +20,19 @@ SolidCallback adds powerful method interception capabilities to your Ruby classe
20
20
  Add this line to your application's Gemfile:
21
21
 
22
22
  ```ruby
23
- gem 'solid_callback'
23
+ gem 'solid_callback'
24
24
  ```
25
25
 
26
26
  And then execute:
27
27
 
28
28
  ```bash
29
- $ bundle install
29
+ bundle install
30
30
  ```
31
31
 
32
32
  Or install it yourself:
33
33
 
34
34
  ```bash
35
- $ gem install solid_callback
35
+ gem install solid_callback
36
36
  ```
37
37
 
38
38
  ## Usage
@@ -190,7 +190,7 @@ Callbacker uses Ruby's metaprogramming to wrap your methods with callback functi
190
190
 
191
191
  ## 🤝 Contributing
192
192
 
193
- Bug reports and pull requests are welcome on GitHub at https://github.com/gklsan/solid_callback.
193
+ Bug reports and pull requests are welcome on GitHub at https://github.com/gklsan/solid_callback/issues.
194
194
 
195
195
  ## 📄 License
196
196