sequel-asterisk-hunter 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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -2
- data/lib/sequel/extensions/asterisk_hunter.rb +1 -1
- data/lib/sequel-asterisk-hunter/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6807749242bc3d6940d7dc0b90bab947edcd38b0c57970425e4a4344315a08ac
|
|
4
|
+
data.tar.gz: 5c1e25f1d3cfd7ec84fa63e3539dd012f5a2d11d23481a42033a1869ebd08a0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f328246f6744a3131e9a1e1e004ba2ad3313df9aba5af3569fa6a4956e23720c2b744b60ff89b185f9e8ae13fcfdaf4cbd9c04cd18960d96c9e1fabe2c835bc1
|
|
7
|
+
data.tar.gz: 74485357975f0c0ceb8df9ab40027b555bd81923835b534e6d150c5d5a4db61528ec053d046900465374b29329a992fa73dca5d227321af00984a259f13ebd30
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -19,11 +19,11 @@ Or install it yourself as:
|
|
|
19
19
|
The plugin needs to be initialized by the Sequel extension interface. The simplest way to configure plugin globally is adding this line to the initializer:
|
|
20
20
|
|
|
21
21
|
```ruby
|
|
22
|
-
Sequel.extension :
|
|
22
|
+
Sequel.extension :asterisk_hunter
|
|
23
23
|
```
|
|
24
24
|
or
|
|
25
25
|
```ruby
|
|
26
|
-
Sequel::Database.extension :
|
|
26
|
+
Sequel::Database.extension :asterisk_hunter
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
But anyway I recommend reading more about [Sequel extensions system](https://github.com/jeremyevans/sequel/blob/master/doc/extensions.rdoc#sequel-extensions).
|