Sha256: 332af2f13cec8d1b0cc1700bff123fffd6f22c4892eae75c9d250fa8ce1f2213

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)

Gem::Specification.new do |s|
  s.name        = "webmaster_tools"
  s.version     = File.read("VERSION").to_s.strip
  s.authors     = ["Tobias Bielohlawek"]
  s.email       = ["tobi@soundcloud.com"]
  s.homepage    = "http://github.com/rngtng/webmaster_tools"
  s.summary     = %q{Gives access to Webmaster Tools Interface data programmatically which is not provided by the official API}
  s.description = %q{Webmaster Tools extends the official API to give programmatically access to various crawl information and functions which are available via the Interface}

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  %w(mechanize).each do |gem|
    s.add_runtime_dependency *gem.split(' ')
  end

  %w(rake rspec vcr webmock).each do |gem|
    s.add_development_dependency *gem.split(' ')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
webmaster_tools-0.1.0.rc2 webmaster_tools.gemspec