Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Rubinius to the test matrix #270

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gemrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gem: --no-document
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- 2.6
- 2.7
- jruby
- rubinius
- truffleruby
steps:
- name: Checkout
Expand Down Expand Up @@ -56,7 +57,7 @@ jobs:

- name: Publish code coverage
if: startsWith(env.RUBY_VERSION, env.COVERAGE_RUBY_VERSION)
uses: paambaati/codeclimate-action@v2.3.0
uses: paambaati/codeclimate-action@v2.4.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Changes

* Add JRuby 9.2 to the test matrix ([#228](https://github.com/railsconfig/config/issues/228))
* Add Rubinius to the test matrix

## 2.2.1

Expand Down
15 changes: 0 additions & 15 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,3 @@ if !ENV['APPRAISAL_INITIALIZED'] && !ENV['GITHUB_ACTIONS']
else
task :default => :spec
end

##
# Documentation
#
require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "Config #{Config::VERSION}"
rdoc.options << '--line-numbers'
rdoc.rdoc_files.include('README.*')
rdoc.rdoc_files.include('CHANGELOG.*')
rdoc.rdoc_files.include('LICENSE.*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
2 changes: 0 additions & 2 deletions config.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ Gem::Specification.new do |s|
'Rails, Sinatra, Pandrino and others'
s.homepage = 'https://github.com/rubyconfig/config'
s.license = 'MIT'
s.extra_rdoc_files = %w[README.md CHANGELOG.md CONTRIBUTING.md LICENSE.md]
s.rdoc_options = ['--charset=UTF-8']
s.post_install_message = "\n\e[33mThanks for installing Config\e[0m 🙏
Please consider donating to our open collective to help us maintain this project.
\n
Expand Down