forked from minrk/iruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiruby.gemspec
31 lines (26 loc) · 1.12 KB
/
iruby.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
# coding: utf-8
require File.dirname(__FILE__) + '/lib/iruby/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'iruby'
s.date = Date.today.to_s
s.version = IRuby::VERSION
s.authors = ['Damián Silvani', 'Min RK', 'Martin Sarsale', 'Josh Adams', 'Daniel Mendler']
s.email = ['[email protected]']
s.description = 'Ruby Kernel for IPython'
s.summary = 'A Ruby kernel for IPython frontends (notebook console, etc.)'
s.homepage = 'https://github.com/minad/iruby'
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^test/})
s.require_paths = %w(lib)
m = "Consider installing the optional dependencies to get additional functionality:\n"
File.read('Gemfile').scan(/gem\s+'(.*?)'/) { m << " * #{$1}\n" }
s.post_install_message = m << "\n"
s.add_development_dependency 'rake'
s.add_runtime_dependency 'bond'
s.add_runtime_dependency 'ffi-rzmq'
s.add_runtime_dependency 'multi_json'
s.add_runtime_dependency 'mimemagic'
end