File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in gitolite.gemspec
4
+ gemspec
Original file line number Diff line number Diff line change
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
+
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
You can’t perform that action at this time.
0 commit comments