forked from wer-weiss-was/wordpressto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpressto.gemspec
37 lines (26 loc) · 1.08 KB
/
wordpressto.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wordpressto/version'
Gem::Specification.new do |s|
s.name = 'wordpressto'
s.version = Wordpressto::VERSION
s.date = '2013-01-11'
s.summary = "A Ruby library to interact with the Wordpress XMLRPC interface"
s.description = "A Ruby library to interact with the Wordpress XMLRPC interface"
s.authors = ['John Leach']
s.email = ['john@johnleach.co.uk']
s.homepage = 'http://github.com/johnl/wordpressto'
s.has_rdoc = true
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^(spec)/})
s.require_paths = ["lib"]
s.rdoc_options << '--title' << 'Wordpressto' <<
'--main' << 'README.rdoc' <<
'--line-numbers'
s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
s.add_dependency('mime-types')
s.add_development_dependency('rake')
s.add_development_dependency('rspec', "~> 2.13.0")
s.add_development_dependency "bundle"
end