1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Merge pull request #1841 from pry/method-source-bump

gemspec: bump require method_source >= 0.9.1
This commit is contained in:
Kyrylo Silin 2018-11-03 14:05:21 +08:00 committed by GitHub
commit 312ab5aba4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 2 deletions

View file

@ -129,6 +129,15 @@ jobs:
- <<: *bundle_install
- <<: *install_ubuntu_nano
- <<: *unit
"jruby-9.2-jdk":
docker:
- image: circleci/jruby:9.2-jdk
working_directory: ~/pry
steps:
- <<: *repo_restore_cache
- <<: *bundle_install
- <<: *install_ubuntu_nano
- <<: *unit
workflows:
version: 2
@ -168,3 +177,7 @@ workflows:
requires:
- rubocop_lint
- yard_lint
- "jruby-9.2-jdk":
requires:
- rubocop_lint
- yard_lint

View file

@ -1,4 +1,3 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/pry/version', __FILE__)
Gem::Specification.new do |s|
@ -29,6 +28,6 @@ Gem::Specification.new do |s|
s.files = `git ls-files bin lib *.md LICENSE`.split("\n")
s.add_dependency 'coderay', '~> 1.1.0'
s.add_dependency 'method_source', '~> 0.9.0'
s.add_dependency 'method_source', '>= 0.9.1'
s.add_development_dependency 'bundler', '~> 1.0'
end