Skip to content

Commit

Permalink
re-adds rails 5.1 to testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tansengming committed Dec 25, 2020
1 parent de9ca57 commit 0cfee1b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
ruby: [2.5.x, 2.6.x, 2.7.x]
gemfile: [Gemfile, gemfiles/rails60.gemfile, gemfiles/rails52.gemfile]
gemfile: [Gemfile, gemfiles/rails60.gemfile, gemfiles/rails52.gemfile, gemfiles/rails51.gemfile]
steps:
- uses: actions/checkout@v1
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion Changelog.md
@@ -1,6 +1,6 @@
## Unreleased

-
- Adds testing for Rails 6.0

## 2.2.1 (2020-12-22)

Expand Down
20 changes: 20 additions & 0 deletions gemfiles/rails51.gemfile
@@ -0,0 +1,20 @@
source :rubygems

gem 'rails', '~> 5.1.0'

gem 'rake'
gem 'responders'
gem 'sprockets', '< 4'
gem 'stripe'

group :test do
gem 'mocha'
gem 'simplecov', require: false
gem 'stripe-ruby-mock'
gem 'webmock'
# Required for system tests
gem 'capybara'
gem 'puma'
gem 'selenium-webdriver'
gem 'webdrivers'
end

0 comments on commit 0cfee1b

Please sign in to comment.