forked from robmiller/ruby-wpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-wpdb.gemspec
41 lines (31 loc) · 1.45 KB
/
ruby-wpdb.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
38
39
40
41
$:.push File.expand_path("../lib", __FILE__)
require "ruby-wpdb/version"
Gem::Specification.new do |s|
s.name = "ruby-wpdb"
s.version = WPDB::VERSION
s.date = Date.today.strftime("%Y-%m-%d")
s.summary = "A Ruby ORM wrapper for WordPress"
s.description = "ruby-wpdb gives you a painless way to access and interact with WordPress from Ruby, accessing posts, tags, and all other WordPress concepts as plain-old Ruby objects."
s.authors = ["Rob Miller"]
s.email = "[email protected]"
s.homepage = "http://github.com/robmiller/ruby-wpdb"
s.license = "MIT"
s.files = Dir.glob("{bin,lib,data,test}/**/*") + %w(LICENSE README.md Gemfile)
s.require_path = 'lib'
s.executables = ['ruby-wpdb']
s.add_runtime_dependency 'mysql2', '~> 0.3'
s.add_runtime_dependency 'sequel', '~> 4.2'
s.add_runtime_dependency 'sequel_sluggable', '~> 0.0.6'
s.add_runtime_dependency 'php-serialize', '~> 1.1'
s.add_runtime_dependency 'pry', '~> 0.9'
s.add_runtime_dependency 'thor', '~> 0.18'
s.add_development_dependency 'rake', '~> 10.1'
s.add_development_dependency 'rubygems-tasks', '~> 0.2'
s.add_development_dependency 'rspec', '~> 2.14'
s.add_development_dependency 'rack-test', '~> 0.6'
s.add_development_dependency "guard", "~> 2.6"
s.add_development_dependency "guard-rspec", "~> 4.2"
s.add_development_dependency "guard-bundler", "~> 2.0"
s.add_development_dependency 'mutant', '~> 0.5'
s.add_development_dependency 'mutant-rspec', '~> 0.5'
end