kill_shotgun 0.1.0 → 0.2.0

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: 1222131a4d5cedb30e2a9cdbfd1559929de9ee1a2b2ddc88d8c4157ead1f84d8
4
- data.tar.gz: 807f5cbc355ef3ba62ef30b82146568de5dcac8bc45750fc57110fd0b90f3e00
3
+ metadata.gz: 13fc5688975aeb6a8251cfbb3767d2c25937dcacceca05d76b3bbd4d89e941d8
4
+ data.tar.gz: '0340956f462264ec1a11e5bbcbbacdb0f23df1902202b2fe1715c264f7b1897b'
5
5
  SHA512:
6
- metadata.gz: ca483501d0653feeadc3ed74b73499809544ae79947254f0f9874d1617884e974db9ef77d595cab1a90ea411d8071c4f534a5cce63d418115f2147343c3db8e9
7
- data.tar.gz: d76de05c3e3df032840e05ac9ab9421f9d0a7dc0a75505bb26952e9c687752e313db77064735f11d8ab72132e363b52072449fd7ae369c3a5f1c75972b1f937e
6
+ metadata.gz: 3bdbe9ebf36a39cfc6cc232d901c50cbf0728f91fc066af483abedcf5829b24f19dba44ca9024ad1d17d2566f8d09c12a37236a301d143982ebef5da3a2182c1
7
+ data.tar.gz: a48071013cfddbd915c0a886dbe23d49b1461d757f1f48e82f96c23c7ae8c6332d748bb8c4023290c3c20f13b79e732f212e17800295de782e557d122cd102cd
@@ -0,0 +1,19 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ kill_shotgun (0.2.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (12.3.3)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ kill_shotgun!
16
+ rake (~> 12.0)
17
+
18
+ BUNDLED WITH
19
+ 2.1.4
@@ -1,7 +1,7 @@
1
- #!/usr/bin/env bash
2
1
  pid=$(lsof -i :9393 -sTCP:LISTEN |awk 'NR > 1 {print $2}')
3
2
  if [ $pid ]
4
3
  then
4
+ echo "killing process: $pid"
5
5
  kill $pid
6
6
  else
7
7
  echo "No Shotgun Server Active on port 9393"
@@ -1,3 +1,3 @@
1
1
  module KillShotgun
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -0,0 +1,3 @@
1
+ module KillShotgun
2
+ VERSION = "0.1.0"
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kill_shotgun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - DakotaLMartinez
@@ -22,6 +22,7 @@ files:
22
22
  - ".gitignore"
23
23
  - CODE_OF_CONDUCT.md
24
24
  - Gemfile
25
+ - Gemfile.lock
25
26
  - LICENSE.txt
26
27
  - README.md
27
28
  - Rakefile
@@ -31,6 +32,7 @@ files:
31
32
  - kill_shotgun.gemspec
32
33
  - lib/kill_shotgun.rb
33
34
  - lib/kill_shotgun/version.rb
35
+ - lib/kill_shotgun/version.rb.bak
34
36
  homepage: https://github.com/DakotaLMartinez/kill_shotgun
35
37
  licenses:
36
38
  - MIT