File: powerbar.gemspec

package info (click to toggle)
ruby-powerbar 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: ruby: 543; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 834 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "powerbar/version"

Gem::Specification.new do |s|
  s.name        = "powerbar"
  s.version     = Powerbar::VERSION
  s.authors     = ["Moe"]
  s.email       = ["moe@busyloop.net"]
  s.homepage    = "https://github.com/busyloop/powerbar"
  s.summary     = %q{The last progressbar-library you'll ever need}
  s.description = %q{The last progressbar-library you'll ever need}
  s.license     = "MIT"

  s.required_ruby_version = '> 1.9.3'
  s.add_dependency "hashie", ">= 1.1.0"

  s.files         = `git ls-files`.split("\n").reject {|e| e.start_with? 'ass/'}
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end