Skip to content

Commit

Permalink
Merge branch 'master' into rails-7.0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanfb committed Nov 26, 2024
2 parents c477335 + c7b3e1f commit 69e0eef
Show file tree
Hide file tree
Showing 134 changed files with 227 additions and 159 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rails-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: jruby-9.4.8.0
ruby-version: jruby-9.4.9.0
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Configure externals
run: bundle exec cap local externals:setup
Expand Down
22 changes: 22 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
include:
- project: devops/ci-config
file:
- /templates/audit-jobs.gitlab-ci.yml
- /templates/container-flexible.gitlab-ci.yml
- /templates/environments.gitlab-ci.yml
- /templates/tag-release-version.gitlab-ci.yml

stages:
- build
- test

.job:
except:
variables:
- $CI_SKIP_JOB_STAGE == $CI_JOB_STAGE

build:
extends: .build

test:
extends: .test
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
jruby-9.4.8.0
jruby-9.4.9.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN git clone https://github.com/rbenv/rbenv.git .rbenv
ENV PATH /root/.rbenv/bin:/root/.rbenv/shims:$PATH
RUN echo 'eval "$(rbenv init -)"' > /etc/profile.d/rbenv.sh
RUN chmod +x /etc/profile.d/rbenv.sh
RUN git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build && cd "$(rbenv root)"/plugins/ruby-build && git checkout v20240917
RUN git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build && cd "$(rbenv root)"/plugins/ruby-build && git checkout v20241105
RUN git clone https://github.com/rbenv/rbenv-vars.git $(rbenv root)/plugins/rbenv-vars

# Copy in secret files
Expand Down
14 changes: 8 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Edit this Gemfile to bundle your application's dependencies.
# This preamble is the current preamble for Rails 3 apps; edit as needed.
source 'https://rubygems.org'
ruby '3.1.4', engine: 'jruby', engine_version: '9.4.8.0'
ruby '3.1.4', engine: 'jruby', engine_version: '9.4.9.0'

gem 'rails', '~> 7.0', '< 7.1'

Expand Down Expand Up @@ -35,12 +35,13 @@ gem 'jruby-jars', File.read('.ruby-version').chomp.sub(/^jruby-/, '')
gem 'sass'
# gem 'json-jruby', '>= 1.6.6', :require => 'json', :platform => :jruby
gem 'actionpack-page_caching'
gem 'activerecord-jdbc-adapter', '>= 1.3.25', '~> 70', platform: :jruby
gem 'activerecord-jdbcmysql-adapter', '>= 1.3.25', '~> 70', platform: :jruby
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.3.25', '~> 70', platform: :jruby
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.3.25', '~> 70', platform: :jruby
gem 'activerecord-jdbc-adapter', '>= 61.3', '~> 70', platform: :jruby
gem 'activerecord-jdbcmysql-adapter', '>= 61.3', '~> 70', platform: :jruby
gem 'activerecord-jdbcpostgresql-adapter', '>= 61.3', '~> 70', platform: :jruby
gem 'activerecord-jdbcsqlite3-adapter', '>= 61.3', '~> 70', platform: :jruby
gem 'activerecord-session_store'
gem 'airbrake'
gem 'airbrake-ruby', '6.2.0'
gem 'capistrano', '~> 2.15.0'
gem 'devise', '~> 4.8'
gem 'dotenv-rails'
Expand All @@ -51,9 +52,10 @@ gem 'i18n'
gem 'jdbc-mysql', require: false
gem 'jdbc-sqlite3', '>= 3.7.2', platform: :jruby
gem 'json', '>=1.6.6'
gem 'lograge'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection'
gem 'pry', '~> 0.14.0'
gem 'pry', '~> 0.15.0'
gem 'pry-rails', '~> 0.3.9'
gem 'puma', '< 7'
gem 'rack', '>= 1.1.0'
Expand Down
Loading

0 comments on commit 69e0eef

Please sign in to comment.