cmon 0.0.1.alpha1

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.
Files changed (4) hide show
  1. data/bin/cmon +13 -0
  2. data/lib/cmon.rb +4 -0
  3. data/lib/cmon/version.rb +3 -0
  4. metadata +74 -0
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Check if an older version of bundler is installed
4
+ require 'cmon'
5
+
6
+ puts "cmon test"
7
+ if ARGV[0] == "t"
8
+ puts "exiting well"
9
+ exit 0
10
+ else
11
+ puts "exiting badly"
12
+ exit 1
13
+ end
@@ -0,0 +1,4 @@
1
+ require 'cmon/version'
2
+
3
+ module CMon
4
+ end
@@ -0,0 +1,3 @@
1
+ module CMon
2
+ VERSION = "0.0.1.alpha1"
3
+ end
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cmon
3
+ version: !ruby/object:Gem::Version
4
+ hash: -3702664362
5
+ prerelease: 6
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ - alpha
11
+ - 1
12
+ version: 0.0.1.alpha1
13
+ platform: ruby
14
+ authors:
15
+ - Matthew Rudy Jacobs
16
+ autorequire:
17
+ bindir: bin
18
+ cert_chain: []
19
+
20
+ date: 2011-06-15 00:00:00 +08:00
21
+ default_executable:
22
+ dependencies: []
23
+
24
+ description: Cron + Monitoring
25
+ email:
26
+ - matthewrudyjacobs+cmon@gmail.com
27
+ executables:
28
+ - cmon
29
+ extensions: []
30
+
31
+ extra_rdoc_files: []
32
+
33
+ files:
34
+ - lib/cmon/version.rb
35
+ - lib/cmon.rb
36
+ - bin/cmon
37
+ has_rdoc: true
38
+ homepage: https://github.com/matthewrudy/com
39
+ licenses: []
40
+
41
+ post_install_message:
42
+ rdoc_options: []
43
+
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ none: false
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ hash: 3
52
+ segments:
53
+ - 0
54
+ version: "0"
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ hash: 23
61
+ segments:
62
+ - 1
63
+ - 3
64
+ - 6
65
+ version: 1.3.6
66
+ requirements: []
67
+
68
+ rubyforge_project:
69
+ rubygems_version: 1.6.2
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Monitoring with Cron
73
+ test_files: []
74
+