File: fuubar.gemspec

package info (click to toggle)
ruby-fuubar 2.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 504 kB
  • sloc: ruby: 377; sh: 29; makefile: 7
file content (34 lines) | stat: -rw-r--r-- 1,578 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
23
24
25
26
27
28
29
30
31
32
33
34
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
  spec.name          = 'fuubar'
  spec.version       = '2.5.1'
  spec.authors       = ['Nicholas Evans', 'Jeff Kreeftmeijer', 'jfelchner']
  spec.email         = ['jeff@kreeftmeijer.nl', 'accounts+git@thekompanee.com']
  spec.summary       = %q{the instafailing RSpec progress bar formatter}
  spec.description   = %q{the instafailing RSpec progress bar formatter}
  spec.homepage      = 'https://github.com/thekompanee/fuubar'
  spec.licenses      = ['MIT']

  spec.cert_chain    = ['certs/thekompanee.pem']
  spec.signing_key   = File.expand_path('~/.gem/certs/thekompanee-private_key.pem') if $0 =~ /gem\z/

  spec.executables   = []
  spec.files         = Dir['{app,config,db,lib,templates}/**/*'] + %w{README.md LICENSE.txt}

  spec.metadata      = {
    'bug_tracker_uri'   => 'https://github.com/thekompanee/fuubar/issues',
    'changelog_uri'     => 'https://github.com/thekompanee/fuubar/blob/master/CHANGELOG.md',
    'documentation_uri' => 'https://github.com/thekompanee/fuubar/tree/releases/v2.4.0',
    'homepage_uri'      => 'https://github.com/thekompanee/fuubar',
    'source_code_uri'   => 'https://github.com/thekompanee/fuubar',
    'wiki_uri'          => 'https://github.com/thekompanee/fuubar/wiki',
  }

  spec.add_dependency             'rspec-core',       ["~> 3.0"]
  spec.add_dependency             'ruby-progressbar', ["~> 1.4"]

  spec.add_development_dependency 'rspec',            ["~> 3.7"]
end