Skip to content

Commit fad8684

Browse files
committed
+ gemspec
0 parents  commit fad8684

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "http://rubygems.org"
2+
3+
# Specify your gem's dependencies in gitolite.gemspec
4+
gemspec

idb.gemspec

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
require "idb/version"
4+
5+
Gem::Specification.new do |s|
6+
s.name = "idb"
7+
s.version = IDB::VERSION
8+
s.platform = Gem::Platform::RUBY
9+
s.authors = ["Riceball LEE"]
10+
s.email = ["[email protected]"]
11+
s.homepage = "https://www.github.com/snowyu/idb.ruby"
12+
s.summary = %q{A Ruby gem for iDB NOSQL Database.}
13+
s.description = %q{This gem is designed to provide a Ruby interface to the iDB database system.}
14+
15+
s.rubyforge_project = "idb"
16+
17+
s.add_development_dependency "rspec", "~> 2.9.0"
18+
s.add_development_dependency "forgery", "~> 0.5.0"
19+
s.add_development_dependency "rdoc", "~> 3.12"
20+
s.add_development_dependency "simplecov", "~> 0.6.2"
21+
s.add_dependency "ffi-xattr", ">= 0.0.4"
22+
23+
s.files = `git ls-files`.split("\n")
24+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
25+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
26+
s.require_paths = ["lib"]
27+
end

0 commit comments

Comments
 (0)