Skip to content

Commit

Permalink
Merge pull request #6 from appfolio/wlRuby263
Browse files Browse the repository at this point in the history
Ruby 2.6.3
  • Loading branch information
wpliao1989 authored May 24, 2019
2 parents ce34cbb + 320dbcc commit 2c64889
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,16 @@ jobs:
docker:
- image: circleci/ruby:2.5.3

test-ruby-263:
steps:
- bundle_install_and_test
docker:
- image: circleci/ruby:2.6.3

workflows:
rc:
jobs:
- test-ruby-253:
context: appfolio_test_context
- test-ruby-263:
context: appfolio_test_context
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.3
2.6.3
2 changes: 1 addition & 1 deletion Appraisals
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
case(RUBY_VERSION)

when '2.5.3' then
when '2.5.3', '2.6.3' then
appraise "ruby-#{RUBY_VERSION}" do
end

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Rake::TestTask.new(:test) do |t|
end

namespace :test do
AfGems::RubyAppraisalTask.new(:all, ['ruby-2.5.3'])
AfGems::RubyAppraisalTask.new(:all, ['ruby-2.5.3', 'ruby-2.6.3'])
end

task :default => :test
10 changes: 10 additions & 0 deletions gemfiles/ruby_2.6.3.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file was generated by Appraisal

source "https://rubygems.org"

source "https://gemini.atl.appfolio.net" do
gem "af_gems", "~> 6.0"
gem "af_testing", "~> 5.5"
end

gemspec path: "../"

0 comments on commit 2c64889

Please sign in to comment.