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:
commit
312ab5aba4
2 changed files with 14 additions and 2 deletions
|
@ -129,6 +129,15 @@ jobs:
|
||||||
- <<: *bundle_install
|
- <<: *bundle_install
|
||||||
- <<: *install_ubuntu_nano
|
- <<: *install_ubuntu_nano
|
||||||
- <<: *unit
|
- <<: *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:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
|
@ -168,3 +177,7 @@ workflows:
|
||||||
requires:
|
requires:
|
||||||
- rubocop_lint
|
- rubocop_lint
|
||||||
- yard_lint
|
- yard_lint
|
||||||
|
- "jruby-9.2-jdk":
|
||||||
|
requires:
|
||||||
|
- rubocop_lint
|
||||||
|
- yard_lint
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
# -*- encoding: utf-8 -*-
|
|
||||||
require File.expand_path('../lib/pry/version', __FILE__)
|
require File.expand_path('../lib/pry/version', __FILE__)
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
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.files = `git ls-files bin lib *.md LICENSE`.split("\n")
|
||||||
|
|
||||||
s.add_dependency 'coderay', '~> 1.1.0'
|
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'
|
s.add_development_dependency 'bundler', '~> 1.0'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue