Sha256: 899ca12fb412cc39745c921cfeaa4581aa063bfdc4328af470d5c903e19d79b7

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'statusboard/version'

Gem::Specification.new do |spec|
  spec.name          = "statusboard"
  spec.version       = Statusboard::VERSION
  spec.authors       = ["Julian Schuh"]
  spec.email         = ["julez@julez.in"]
  spec.summary       = %q{Feed the Status Board App by Panic with custom data.}
  spec.description   = %q{Use a convenient and expressive DSL to feed the Status Board App by Panic with custom data. Benefit directly from rubys expressiveness without having to touch any server-related code.}
  spec.homepage      = "http://julez.io"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake"

  spec.add_dependency "tilt", ">= 1.4.0"          # Simple Template parsing
  spec.add_dependency "rack-handlers", "~> 0.7"   # Rack handler
  spec.add_dependency "sinatra", "~> 1.4.5"       # Server part is based on sinatra
  spec.add_dependency "rack", "~> 1.5.2"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
statusboard-0.1.0 statusboard.gemspec