summaryrefslogtreecommitdiff
path: root/ffi-yajl.gemspec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2013-10-23 21:37:05 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2013-10-23 21:37:05 -0700
commit872073ee055ff8e72251e6483a7c4d7c1558013e (patch)
tree66a5e2937c23b239331ce46a9dd865fdc5350ab2 /ffi-yajl.gemspec
downloadffi-yajl-872073ee055ff8e72251e6483a7c4d7c1558013e.tar.gz
gem structure and POC library code
Diffstat (limited to 'ffi-yajl.gemspec')
-rw-r--r--ffi-yajl.gemspec23
1 files changed, 23 insertions, 0 deletions
diff --git a/ffi-yajl.gemspec b/ffi-yajl.gemspec
new file mode 100644
index 0000000..39daaca
--- /dev/null
+++ b/ffi-yajl.gemspec
@@ -0,0 +1,23 @@
+$:.unshift(File.dirname(__FILE__) + '/lib')
+require 'ffi-yajl/version'
+
+Gem::Specification.new do |s|
+ s.name = 'ffi-yajl'
+ s.version = FFI_Yajl::VERSION
+ s.platform = Gem::Platform::RUBY
+ s.extra_rdoc_files = ["README.md", "LICENSE" ]
+ s.summary = "Ruby FFI wrapper around YAJL 2.x"
+ s.description = s.summary
+ s.author = "Lamont Granquist"
+ s.email = "lamont@scriptkiddie.org"
+ s.homepage = "http://github.com/lamont-granquist/ffi-yajl"
+
+
+ s.add_development_dependency "rspec", "~> 2.14"
+ s.add_dependency "ffi", "~> 1.9"
+
+ s.bindir = "bin"
+ s.executables = []
+ s.require_path = 'lib'
+ s.files = %w(LICENSE README.md) + Dir.glob("lib/**/*")
+end