# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'junkie/version' Gem::Specification.new do |gem| gem.name = "junkie" gem.version = Junkie::VERSION gem.authors = ["Philipp Böhm"] gem.email = ["philipp-boehm@live.de"] gem.description = %q{TV series management application} gem.summary = %q{TV series managament tool that does all the work you have with your series.} gem.homepage = "https://github.com/pboehm/junkie" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] end