app_perf_agent 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 921b8e15af5fd22487a34af1fbc22bf538e20a09f378489667cde0bef7429192
4
- data.tar.gz: 89fed695ee2f9d6ec33c1789b4e9cb3b8bbef75a98b0da423b63f04ec461d6de
3
+ metadata.gz: e2fe62893a8eb67fec0dfc01cd23301cfa1a23ac15ed9439ba2a2174dd2a58c1
4
+ data.tar.gz: 3038603e07f4c0a803d955b1531674fe6af1a1b496ca73360ea09aa3b469db0c
5
5
  SHA512:
6
- metadata.gz: b0a4656e680356af08c476ca0961f18d6788ab8fc59f32877200ebe57adfa5680af14d63d982378b976ecd43f5ee4ef69e70289ab3bb6254d4470847a09f96c3
7
- data.tar.gz: 5058c86ad8fa1a0cdd3e6551031da6893f657111eb4db80ed4224c5bf603e16cda4d74f2f425401f754c9c4ecd531963438d89348595c896ee872dcbd9768fed
6
+ metadata.gz: 3dc04baf4ec9274c0cc91604df836755f1493a07879541520ac6726b3c43c1d74f2dee1a05b57051bfd511b4f455128bb46c59612fe613229b32e17acdb9ea24
7
+ data.tar.gz: 47c6049bddd2a8811f301e3232dad54d45f0b4eafe3826a9731f0e6a6c18c0938e3d36bec52747909e7fed97eb95cafc560ea8fd7b734367b2863bfca08730e7
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- app_perf_agent (0.0.7)
4
+ app_perf_agent (0.0.8)
5
5
  msgpack
6
6
  pg
7
7
  vmstat (= 2.3.1)
@@ -14,8 +14,8 @@ GEM
14
14
  docile (1.1.5)
15
15
  json (2.1.0)
16
16
  method_source (0.8.2)
17
- msgpack (1.2.6)
18
- pg (1.1.4)
17
+ msgpack (1.3.3)
18
+ pg (1.2.2)
19
19
  pry (0.10.4)
20
20
  coderay (~> 1.1.0)
21
21
  method_source (~> 0.8.1)
@@ -53,4 +53,4 @@ DEPENDENCIES
53
53
  simplecov (= 0.14.1)
54
54
 
55
55
  BUNDLED WITH
56
- 1.16.1
56
+ 1.17.2
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "app_perf_agent"
7
- s.version = "0.0.8"
7
+ s.version = "0.0.9"
8
8
  s.date = "2017-07-24"
9
9
  s.summary = "AppPerf Agent"
10
10
  s.description = "Agent for the AppPerf app."
@@ -64,13 +64,13 @@ module AppPerfAgent
64
64
  end
65
65
 
66
66
  def parse_options(argv)
67
- opts = {}
67
+ opts = { daemon: false }
68
68
 
69
69
  parser = OptionParser.new do |o|
70
70
  o.banner = "app_perf_agent [options]"
71
71
 
72
- o.on '-f', '--foreground', "Daemonize process" do |arg|
73
- opts[:daemon] = false
72
+ o.on '-b', '--background', "Daemonize process" do |arg|
73
+ opts[:daemon] = true
74
74
  end
75
75
 
76
76
  o.on '-l', '--license-key LICENSE_KEY', "License Key" do |arg|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_perf_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Randy Girard