Skip to content

Commit 5fe7ece

Browse files
author
Matt Jones
committed
clean repo
1 parent e3f6ae2 commit 5fe7ece

16 files changed

+86
-37
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/.bundle/
2+
/.yardoc
3+
/Gemfile.lock
4+
/_yardoc/
5+
/coverage/
6+
/doc/
7+
/pkg/
8+
/spec/reports/
9+
/tmp/
10+
*.bundle
11+
*.so
12+
*.o
13+
*.a
14+
mkmf.log
15+
.vagrant/*
16+
.DS_Store
17+
.idea/*
18+
*.gem

.rubocop.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
MethodLength:
3+
Max: 200
4+
5+
LineLength:
6+
Max: 160
7+
8+
FileName:
9+
Enabled: false
10+
11+
PerceivedComplexity:
12+
Enabled: false
13+
14+
CyclomaticComplexity:
15+
Enabled: false
16+
17+
ClassLength:
18+
Enabled: false
19+
20+
IfUnlessModifier:
21+
Enabled: false
22+
23+
RegexpLiteral:
24+
Enabled: false
25+

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: ruby
2+
cache:
3+
- bundler
4+
install:
5+
- bundle install
6+
rvm:
7+
- 1.9.3
8+
- 2.0
9+
- 2.1
10+
notifications:
11+
email:
12+
recipients:
13+
- mattjones@yieldbot.com
14+
on_success: change
15+
on_failure: always
16+
17+
script:
18+
- 'bundle exec rake default'

README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
1-
## Sensu-Plugins-disk-checks
1+
## Sensu-Plugins-postgres
22

3-
[![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-postgres.svg?branch=master)][1]
4-
[![Gem Version](https://badge.fury.io/rb/sensu-plugins-postgres.svg)][2]
5-
[![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-postgres/badges/gpa.svg)][3]
6-
[![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-postgres/badges/coverage.svg)][4]
7-
[![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-postgres.svg)][5]
3+
[![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-postgres.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-postgres)
4+
[![Gem Version](https://badge.fury.io/rb/sensu-plugins-postgres.svg)](http://badge.fury.io/rb/sensu-plugins-postgres)
5+
[![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-postgres/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-postgres)
6+
[![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-postgres/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-postgres)
7+
[![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-postgres.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-postgres)
88

99
## Functionality
1010

1111
## Files
12-
*
13-
*
14-
*
15-
*
12+
* bin/check-postgres-alive
13+
* bin/metric-postgres-dbsize
14+
* bin/metric-postgres-statsbgwriter
15+
* bin/metric-postgres-statstable
16+
* bin/check-postgres-replication
17+
* bin/metric-postgres-graphite
18+
* bin/metric-postgres-statsdb
19+
* bin/metric-postgres-connections
20+
* bin/metric-postgres-locks
21+
* bin/metric-postgres-statsio
1622

1723
## Usage
1824

Rakefile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
1-
21
require 'bundler/gem_tasks'
3-
42
require 'rspec/core/rake_task'
5-
63
require 'yard'
7-
84
require 'github/markup'
9-
105
require 'rubocop/rake_task'
11-
126
require 'redcarpet'
13-
147
require 'yard/rake/yardoc_task'
158

16-
179
desc 'Don\'t run Rubocop for unsupported versions'
1810
begin
1911
if RUBY_VERSION >= '2.0.0'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)