Sha256: ce5a1c3930110c229fe03d654417b5e64a8976cbc07953f113005aa9c35e0fa1

Contents?: true

Size: 1.46 KB

Versions: 3

Compression:

Stored size: 1.46 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'feedlrop/version'

Gem::Specification.new do |spec|
  spec.name          = "feedlrop"
  spec.version       = Feedlrop::VERSION
  spec.authors       = ["yasuo kominami"]
  spec.email         = ["ykominami@gmail.com"]

  spec.summary       = %q{utility functions for Feedly API.}
  spec.description   = %q{utility functions for Feedly API.}
  spec.homepage      = ""
  
  spec.license       = "MIT"
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
  # delete this section to allow pushing this gem to any host.
  if spec.respond_to?(:metadata)
#    spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
  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 { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "feedlr"

  spec.add_runtime_dependency "activerecord"
  spec.add_runtime_dependency "sqlite3"
  spec.add_runtime_dependency "arxutils", "~> 0.1.10"
  spec.add_runtime_dependency "awesome_print"
  
  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
feedlrop-0.1.23 feedlrop.gemspec
feedlrop-0.1.22 feedlrop.gemspec
feedlrop-0.1.21 feedlrop.gemspec