Skip to content

Commit

Permalink
re add gemfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
KinWang-2013 committed Sep 25, 2024
1 parent 1610c8a commit b587886
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ jobs:
include:
- ruby-version: 3.2
- ruby-version: 3.1
- ruby-version: 3.0
- ruby-version: 2.7
- ruby-version: 3.2
gemfile: gemfiles/rails_4.gemfile
- ruby-version: 3.2
gemfile: gemfiles/rails_5.0.gemfile
- ruby-version: 3.2
gemfile: gemfiles/rails_5.1.gemfile
- ruby-version: 3.2
gemfile: gemfiles/rails_5.2.gemfile
- ruby-version: 3.2
gemfile: gemfiles/rails_6.0.gemfile
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
9 changes: 9 additions & 0 deletions gemfiles/rails_4.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'http://rubygems.org'

gem 'rails', '~> 4.0'

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_5.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'http://rubygems.org'

gem 'rails', '~> 5.0.0'

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_5.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'http://rubygems.org'

gem 'rails', '~> 5.1.0'

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_5.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'http://rubygems.org'

gem 'rails', '~> 5.2.0'

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'http://rubygems.org'

gem 'rails', '~> 6.0.0'

gemspec path: '../'

0 comments on commit b587886

Please sign in to comment.