rusky 0.1.1 → 0.1.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: 39cf101aac491d1162a2040fb530c4b7d5f24979
4
- data.tar.gz: 5d86292d565676a435a36f42c44373a566b78a7b
3
+ metadata.gz: d20b04413d99a1a1c2e9d08398fad340ee6aaa6c
4
+ data.tar.gz: 2c3f23d49d85ce6a6f05f4b44753c083bcf1c348
5
5
  SHA512:
6
- metadata.gz: b7c9d295b0d49252a4779fcaab65c0f22d0e204e67b2997702ec3c1f2608eaf5a86891e3a093d3978ffa86b96a7123165882f0fe567dfef420a9dfa2e2b70dbc
7
- data.tar.gz: 642d2a66f81fa3de114da2a8fcd6af5208fb809f1611eb01471bb519571578ce1d153d653810abef6fd2a3c58018614a77e591e4c0199b83f8aab05496635936
6
+ metadata.gz: f4d9573e2866fa2f4ef68e5cbe1d93c9201a4312caded0bc6ec7a54e1ed283e3299b1bd1bde9e22920e1279e887263d6e58fd53c1492c8f277e27719dc0b139e
7
+ data.tar.gz: 9dc75abaaa0883a333f010171eb9a8221c4219db17b7fd70f54425d16ab9e324174e0373497bb693196e8ccb14ac2cf4d85027d20e0510992c649918547d131d
@@ -1,11 +1,11 @@
1
1
  require 'rusky'
2
2
 
3
3
  Gem.post_install do |installer|
4
- Rusky::Callback.install
4
+ Rusky.install
5
5
  puts installer.inspect
6
6
  end
7
7
 
8
8
  Gem.pre_uninstall do |uninstaller|
9
- Rusky::Callback.uninstall
9
+ Rusky.uninstall
10
10
  puts uninstaller.inspect
11
11
  end
@@ -2,5 +2,11 @@ require "rusky/version"
2
2
  require "rusky/callback"
3
3
 
4
4
  module Rusky
5
- # Your code goes here...
5
+ def self.install
6
+ Rusky::Callback.install
7
+ end
8
+
9
+ def self.uninstall
10
+ Rusky::Callback.uninstall
11
+ end
6
12
  end
@@ -1,3 +1,3 @@
1
1
  module Rusky
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rusky
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ohbarye