Sha256: 6c05a6ec6e748e03be8800c2203b96d0ea3c8f999218b301542401c79f9427b1

Contents?: true

Size: 1023 Bytes

Versions: 6

Compression:

Stored size: 1023 Bytes

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{Get programmatically access to Webmaster Tools Interface data}
  s.description = %q{Webmaster Tools extends the official API to give programmatically access to various crawl information and functions which are available via the webinterface}

  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| #debugger
    s.add_development_dependency *gem.split(' ')
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
webmaster_tools-0.1.9 webmaster_tools.gemspec
webmaster_tools-0.1.8 webmaster_tools.gemspec
webmaster_tools-0.1.7 webmaster_tools.gemspec
webmaster_tools-0.1.6 webmaster_tools.gemspec
webmaster_tools-0.1.5 webmaster_tools.gemspec
webmaster_tools-0.1.4 webmaster_tools.gemspec