jcmuller/clock_indicator

View on GitHub
clock_indicator.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'clock_indicator'

Gem::Specification.new do |spec|
  spec.name          = "clock_indicator"
  spec.version       = ClockIndicator::VERSION
  spec.authors       = ["Juan C. Mùˆller"]
  spec.email         = ["jcmuller@gmail.com"]
  spec.summary       = "A GTK Status indicator with the current time"
  spec.homepage      = "https://github.com/jcmuller/clock_indicator"
  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.7"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "pry-byebug"
  spec.add_development_dependency "binding_of_caller"

  spec.add_dependency "gir_ffi-gtk"
  spec.add_dependency "activesupport"
end