tunemygc 1.0.22 → 1.0.23
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/tunemygc/spies/action_controller.rb +1 -1
- data/lib/tunemygc/spies/active_job.rb +1 -1
- data/lib/tunemygc/spies/base.rb +19 -0
- data/lib/tunemygc/spies/manual.rb +1 -1
- data/lib/tunemygc/spies/minitest.rb +1 -1
- data/lib/tunemygc/spies/rspec.rb +1 -1
- data/lib/tunemygc/spies.rb +1 -0
- data/lib/tunemygc/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2ab7e3f7e675b182f1d3f1971f5ca2c17e5e328
|
4
|
+
data.tar.gz: 7eeee4b87b27fd7d2e63be96b55a6a86083b3f51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34f24e43faf0546af1399b8ec66c59f7bdeadf006d8352365136f7cae0381f3ca282b46cb015deef66362be93173e76168aaac330a9bfcdc4cf9a58b22c2ba6a
|
7
|
+
data.tar.gz: e7f392105dfa312a8396be3d9bd02816ab8c5e60f3991ad8ffc526bc3c2b4fa58d064d53991f6a84d1a23702ec83475613ec5153e2c520cc0c9d00306fdc4099
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
module TuneMyGc
|
4
|
+
module Spies
|
5
|
+
class Base
|
6
|
+
def install
|
7
|
+
raise NotImplementedError
|
8
|
+
end
|
9
|
+
|
10
|
+
def uninstall
|
11
|
+
raise NotImplementedError
|
12
|
+
end
|
13
|
+
|
14
|
+
def check_uninstall
|
15
|
+
raise NotImplementedError
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/lib/tunemygc/spies/rspec.rb
CHANGED
data/lib/tunemygc/spies.rb
CHANGED
data/lib/tunemygc/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tunemygc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bear Metal
|
@@ -147,6 +147,7 @@ files:
|
|
147
147
|
- lib/tunemygc/spies.rb
|
148
148
|
- lib/tunemygc/spies/action_controller.rb
|
149
149
|
- lib/tunemygc/spies/active_job.rb
|
150
|
+
- lib/tunemygc/spies/base.rb
|
150
151
|
- lib/tunemygc/spies/manual.rb
|
151
152
|
- lib/tunemygc/spies/minitest.rb
|
152
153
|
- lib/tunemygc/spies/rspec.rb
|