Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Commit

Permalink
gemified
Browse files Browse the repository at this point in the history
  • Loading branch information
amdprophet committed Aug 30, 2011
1 parent c65f21d commit fa3ed12
Show file tree
Hide file tree
Showing 28 changed files with 46 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -1,2 +1,6 @@
.DS_Store
.sass-cache/
.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in sensu-dashboard.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require 'bundler/gem_tasks'
9 changes: 9 additions & 0 deletions bin/sensu-dashboard
@@ -0,0 +1,9 @@
#!/usr/bin/env ruby
begin
require 'sensu-dashboard/app.rb'
rescue LoadError => e
require 'rubygems'
path = File.expand_path '../../lib', __FILE__
$:.unshift(path) if File.directory?(path) && !$:.include?(path)
require 'sensu-dashboard/app.rb'
end
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions lib/sensu-dashboard/version.rb
@@ -0,0 +1,5 @@
module Sensu
module Dashboard
VERSION = "0.1.0"
end
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 23 additions & 0 deletions sensu-dashboard.gemspec
@@ -0,0 +1,23 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sensu-dashboard/version"

Gem::Specification.new do |s|
s.name = "sensu-dashboard"
s.version = Sensu::Dashboard::VERSION
s.authors = ["Justin Kolberg", "Sean Porter"]
s.email = ["justin.kolberg@sonian.net", "sean.porter@sonian.net"]
s.homepage = "https://github.com/sonian/sensu-dashboard"
s.summary = %q{A web interface for sensu, a publish/subscribe server monitoring framework}
s.description = %q{Display current events and clients in sensu via a simple web interface}

s.add_dependency("eventmachine")
s.add_dependency("sinatra/async")
s.add_dependency("em-http-request")
s.add_dependency("em-websocket")
s.add_dependency("sass")

s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end

0 comments on commit fa3ed12

Please sign in to comment.