forked from wilkerlucio/subdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubdb.gemspec
More file actions
22 lines (19 loc) · 737 Bytes
/
subdb.gemspec
File metadata and controls
22 lines (19 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'subdb/version'
Gem::Specification.new do |s|
s.name = "subdb"
s.version = Subdb::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Wilker Lucio"]
s.email = ["wilkerlucio@gmail.com"]
s.homepage = "http://github.com/wilkerlucio/subdb"
s.summary = "SubDB Ruby API"
s.description = "API for SubDB"
s.rubygems_version = ">= 1.3.6"
s.files = Dir.glob("{bin,lib}/**/*") + %w{LICENSE README.textile}
s.executables = ['subdb']
s.require_path = ["lib"]
s.add_dependency('multipart-post', '>= 1.1.0')
end