Skip to content

Commit eb8dc27

Browse files
authored
Merge pull request #256 from kojix2/update_travis
Update configuration files
2 parents b4bdd7e + c7e1165 commit eb8dc27

File tree

3 files changed

+10
-17
lines changed

3 files changed

+10
-17
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ matrix:
2626
- ruby_version=trunk-nightly
2727
- name: "Ruby 2.6"
2828
env:
29-
- ruby_version=2.6.1
29+
- ruby_version=2.6.5
3030
- name: "Ruby 2.5"
3131
env:
32-
- ruby_version=2.5.3
32+
- ruby_version=2.5.7
3333
- name: "Ruby 2.4"
3434
env:
35-
- ruby_version=2.4.5
35+
- ruby_version=2.4.9
3636
- name: "Ruby 2.3"
3737
env:
3838
- ruby_version=2.3.8

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2015 IRuby contributors and the Ruby Science Foundation
1+
Copyright (c) 2013-2019 IRuby contributors and the Ruby Science Foundation
22

33
MIT License
44

iruby.gemspec

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
# coding: utf-8
21
require_relative 'lib/iruby/version'
3-
require 'date'
42

53
Gem::Specification.new do |s|
64
s.name = 'iruby'
7-
s.date = Date.today.to_s
85
s.version = IRuby::VERSION
96
s.authors = ['Daniel Mendler', 'The SciRuby developers']
107
s.email = ['mail@daniel-mendler.de']
11-
s.summary = 'Ruby Kernel for Jupyter/IPython'
8+
s.summary = 'Ruby Kernel for Jupyter'
129
s.description = 'A Ruby kernel for Jupyter environment. Try it at try.jupyter.org.'
1310
s.homepage = 'https://github.com/SciRuby/iruby'
1411
s.license = 'MIT'
@@ -18,19 +15,15 @@ Gem::Specification.new do |s|
1815
s.test_files = s.files.grep(%r{^test/})
1916
s.require_paths = %w(lib)
2017

21-
m = "Consider installing the optional dependencies to get additional functionality:\n"
22-
File.read('Gemfile').scan(/gem\s+'(.*?)'/) { m << " * #{$1}\n" }
23-
s.post_install_message = m << "\n"
18+
s.required_ruby_version = '>= 2.3.0'
2419

25-
s.required_ruby_version = '>= 2.1.0'
20+
s.add_dependency 'bond', '~> 0.5'
21+
s.add_dependency 'multi_json', '~> 1.11'
22+
s.add_dependency 'mimemagic', '~> 0.3'
23+
s.add_dependency 'data_uri', '~> 0.1'
2624

2725
s.add_development_dependency 'rake'
2826
s.add_development_dependency 'minitest'
2927
s.add_development_dependency 'ffi-rzmq'
3028
s.add_development_dependency 'pycall', '>= 1.2.1'
31-
32-
s.add_runtime_dependency 'bond', '~> 0.5'
33-
s.add_runtime_dependency 'multi_json', '~> 1.11'
34-
s.add_runtime_dependency 'mimemagic', '~> 0.3'
35-
s.add_runtime_dependency 'data_uri', '~> 0.1'
3629
end

0 commit comments

Comments
 (0)