Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalie committed Mar 28, 2023
1 parent 785e017 commit f980942
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 36 deletions.
25 changes: 16 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
language: ruby
dist: bionic

language: ruby
rvm:
- 2.3.8
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.0
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
- 3.0
- 3.1
- 3.2

- jruby-9.1
- jruby-9.2
- jruby-head
before_install:
- gem update bundler

matrix:
allow_failures:
- rvm: 2.7.0
- rvm: jruby-9.1
- rvm: jruby-9.2
- rvm: jruby-head

script: bundle exec rspec
10 changes: 4 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
source "http://rubygems.org"

# Specify your gem's dependencies in gh.gemspec
gemspec
gem 'rake'

platform(:jruby) { gem 'jruby-openssl' }

platforms :rbx do
gem 'racc'
gem 'rubysl', '~> 2.0'
gem 'psych'
group :test do
gem 'rspec'
gem 'webmock'
end
6 changes: 0 additions & 6 deletions Rakefile

This file was deleted.

30 changes: 15 additions & 15 deletions gh.gemspec
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "gh/version"
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'gh/version'

Gem::Specification.new do |s|
s.name = "gh"
s.version = GH::VERSION
s.authors = ["Konstantin Haase"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/travis-ci/gh"
s.summary = %q{layered github client}
s.description = %q{multi-layer client for the github api v3}
s.license = "MIT"
s.platform = Gem::Platform::RUBY
s.name = 'gh'
s.version = GH::VERSION
s.summary = %q{layered github client}
s.description = %q{multi-layer client for the github api v3}

s.required_ruby_version = '>= 2.3.0'
s.authors = ['Travis CI']
s.email = '[email protected]'
s.homepage = 'https://github.com/travis-ci/gh'

s.files = `git ls-files -- lib LICENSE`.split("\n")
s.license = 'MIT'

s.add_development_dependency 'rspec'
s.add_development_dependency 'webmock'
s.files = Dir['lib/**/*', 'LICENSE']
s.require_path = 'lib'

s.required_ruby_version = '>= 2.3', '< 3.3'

s.add_runtime_dependency 'faraday', '~> 1.0'
s.add_runtime_dependency 'faraday_middleware', '~> 1.0'
Expand Down

0 comments on commit f980942

Please sign in to comment.