Sha256: 0fa438e918d8a7bfebfe9dc6da260fa364f25984102d20cc0ce5e6046d1a21ab
Contents?: true
Size: 1.39 KB
Versions: 7
Compression:
Stored size: 1.39 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'wp/api/version' Gem::Specification.new do |spec| spec.name = "wp-api" spec.version = WP::API::VERSION spec.authors = ["Colin Young"] spec.email = ["me@colinyoung.com"] spec.summary = %q{Easily access Wordpress blogs that have the new, RESTful WP API plugin installed.} spec.description = %q{Makes it incredibly easy and semantic to access Wordpress blogs that have the new, RESTful WP API plugin installed.} spec.homepage = "https://github.com/colinyoung/wp-api" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_runtime_dependency 'httparty' spec.add_runtime_dependency 'activesupport' spec.add_runtime_dependency 'addressable' spec.add_runtime_dependency 'htmlentities' spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "yajl-ruby", '~> 1.2.1' spec.add_development_dependency "rake", '~> 0' spec.add_development_dependency "rspec", '>= 2.0' spec.add_development_dependency "rspec-its", '>= 1.0.1' spec.add_development_dependency "fakeweb", '~> 1.3', '>= 1.3.0' end
Version data entries
7 entries across 7 versions & 1 rubygems