Sha256: 5c88a2434cbfc94daed5e6d4f8732516072a3b852237c1c2673236047eea9a81

Contents?: true

Size: 1.1 KB

Versions: 8

Compression:

Stored size: 1.1 KB

Contents

lib = "sawyer"
lib_file = File.expand_path("../lib/#{lib}.rb", __FILE__)
File.read(lib_file) =~ /\bVERSION\s*=\s*["'](.+?)["']/
version = $1

Gem::Specification.new do |spec|
  spec.specification_version = 2 if spec.respond_to? :specification_version=
  spec.required_rubygems_version = Gem::Requirement.new(">= 1.3.5") if spec.respond_to? :required_rubygems_version=

  spec.name    = lib
  spec.version = version

  spec.summary = "Secret User Agent of HTTP"

  spec.authors  = ["Rick Olson", "Wynn Netherland"]
  spec.email    = 'technoweenie@gmail.com'
  spec.homepage = 'https://github.com/lostisland/sawyer'
  spec.licenses = ['MIT']

  spec.add_dependency 'faraday',      ['~> 0.8', '< 0.10']
  spec.add_dependency 'addressable', ['~> 2.3.5']

  spec.files = %w(Gemfile LICENSE.md README.md Rakefile)
  spec.files << "#{lib}.gemspec"
  spec.files += Dir.glob("lib/**/*.rb")
  spec.files += Dir.glob("test/**/*.rb")
  spec.files += Dir.glob("script/*")

  dev_null    = File.exist?('/dev/null') ? '/dev/null' : 'NUL'
  git_files   = `git ls-files -z 2>#{dev_null}`
  spec.files &= git_files.split("\0") if $?.success?
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
tdiary-4.2.1 vendor/bundle/ruby/2.2.0/gems/sawyer-0.6.0/sawyer.gemspec
sawyer-0.6.0 sawyer.gemspec
sawyer-0.5.5 sawyer.gemspec
sawyer-0.5.4 sawyer.gemspec
sawyer-0.5.3 sawyer.gemspec
sawyer-0.5.2 sawyer.gemspec
sawyer-0.5.1 sawyer.gemspec
sawyer-0.5.0 sawyer.gemspec