Sha256: ecd46c48af416946c910921b8496381721a960f887b4972940ab34c5f74c6361

Contents?: true

Size: 1.53 KB

Versions: 1

Compression:

Stored size: 1.53 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "day_books/version"

Gem::Specification.new 'day_books', '0.1.0' do |spec|
  spec.name          = "day_books"
  spec.version       = DayBooks::VERSION
  spec.authors       = ["Victoria Fluharty"]
  spec.email         = ["victoria.fluharty@gmail.com"]

  spec.summary       = %q{Interactive library for famous author, Sylvia Day's books.}
  spec.description   = %q{Library that lists all of the books written by Sylvia Day using goodreads website. Allows user to see a list of her books and pick a book to see the description.}
  spec.homepage      = "https://github.com/torianne02/CLI-Project-Day-Library"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata["allowed_push_host"] = "https://rubygems.org"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "bin"
  spec.executables   = ["day_books"]
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "pry"
  spec.add_dependency "nokogiri"
  spec.add_dependency "require_all"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
day_books-0.1.0 day_books.gemspec