Sha256: 79e1a295bce4234d1a46acc4b1a161d5fe212aee5e494ba8457fd095f06b1c92
Contents?: true
Size: 1.57 KB
Versions: 2
Compression:
Stored size: 1.57 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'whats_on_netflix/version' Gem::Specification.new do |spec| spec.name = "whats-on-netflix" spec.version = WhatsOnNetflix::VERSION spec.authors = ["CJ Horton"] spec.email = ["thecjhorton@gmail.com"] spec.summary = "See what's being added and removed from Netflix this month" spec.homepage = "https://github.com/radditude/whats-on-netflix-cli-gem" 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`.split($\) spec.executables = ["whats-on-netflix"] spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.name = "whats-on-netflix" spec.require_paths = ["lib", "lib/whats_on_netflix", "config"] spec.version = WhatsOnNetflix::VERSION spec.license = "MIT" spec.add_runtime_dependency "nokogiri", "~> 1" spec.add_development_dependency "bundler", "~> 1.13" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "pry", "~> 0" spec.add_development_dependency "nokogiri", "~> 1" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
whats-on-netflix-0.1.7 | whats-on-netflix.gemspec |
whats-on-netflix-0.1.5 | whats-on-netflix.gemspec |