# -*- encoding: utf-8 -*- STATUSBAR_VERSION = "0.2.3" Gem::Specification.new do |spec| spec.name = "status_bar" spec.version = STATUSBAR_VERSION spec.authors = ["Holger Sindbaek"] spec.email = ["holgersindbaek@gmail.com"] spec.description = %q{This RubyMotion gem can show status updates in the status bar. Heavily inspired by https://github.com/brianpartridge/BPStatusBar.} spec.summary = %q{RubyMotion status bar wrapper.} spec.homepage = "https://github.com/holgersindbaek/status_bar" spec.license = "MIT" spec.files = `git ls-files`.split($\) 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 "rake" spec.add_dependency "sugarcube", "1.3.5" spec.add_dependency "bubble-wrap", "1.4.0" spec.add_dependency 'teacup', '2.1.13' spec.add_dependency 'hs' end