Sha256: 2b77ab0565b4f11af6012e436cce9a298d66019c593fc325d9782780f9c1b272

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

# -*- encoding: utf-8 -*-
require_relative 'lib/alexandria/version'

Gem::Specification.new do |s|
  s.name = 'alexandria-book-collection-manager'
  s.version = Alexandria::VERSION

  s.summary = 'GNOME application for managing collections of books'
  s.required_ruby_version = '>= 1.9.3'

  s.authors = ['Matijs van Zuijlen']
  s.email = ['matijs@matijs.net']
  s.homepage = 'http://www.github.com/mvz/alexandria-book-collection-manager'

  s.license = 'GPL-2'

  s.files = `git ls-files -z`.split("\0") |
    ['lib/alexandria/default_preferences.rb']

  s.executables = s.files.grep(%r{^bin/}).map { |path| File.basename(path) }

  s.rdoc_options = ['--main', 'README.md']

  s.add_runtime_dependency('gettext', ['~> 3.1'])
  s.add_runtime_dependency('hpricot', ['~> 0.8.5'])
  s.add_runtime_dependency('htmlentities', ['~> 4.3'])
  s.add_runtime_dependency('gtk2', ['~> 2.2'])
  s.add_runtime_dependency('gstreamer', ['~> 2.2'])

  s.add_development_dependency('minitest', ['~> 5.0'])
  s.add_development_dependency('rake', ['~> 10.0'])
  s.add_development_dependency('rspec', ['~> 3.0'])

  s.require_paths = ['lib']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alexandria-book-collection-manager-0.6.9.pre1 alexandria-book-collection-manager.gemspec