-
Notifications
You must be signed in to change notification settings - Fork 16
/
hubris.gemspec
32 lines (27 loc) · 1.06 KB
/
hubris.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "hubris/version"
require 'rake'
Gem::Specification.new do |s|
s.name = "hubris"
s.version = Hubris::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Mark Wotton", "James Britt", "Josh Price"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/hubris"
s.summary = %q{A bridge between Ruby and Haskell}
s.description = %q{A bridge between Ruby and Haskell}
s.rubyforge_project = "Hubris"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'rake-compiler', '>= 0.7.6'
s.add_development_dependency 'rspec', '2.4.0'
s.add_dependency 'rake', '0.8.7'
s.add_dependency 'bundler'
s.add_dependency 'open4'
s.extensions = 'Rakefile' # ext/mkrf_conf.rb'
# system "bundle exec rake compile"
# Rake::Task['compile'].invoke
end