Compare commits

..

No commits in common. "30c1192e27cd0d2f33e19a0bec53906917a92e6d" and "c29d53a33b5cb1be383daceec2069135412e67bc" have entirely different histories.

3 changed files with 3 additions and 25 deletions

10
Gemfile
View File

@ -2,10 +2,6 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'puma', '~> 6.4'
gem 'rackup', '~> 2.1'
gem 'roda', '~> 3.72' gem 'roda', '~> 3.72'
gem 'sequel', '~> 5.72' gem 'sequel', '~> 5.72'
@ -28,8 +24,8 @@ group :test do
gem 'simplecov' gem 'simplecov'
gem 'rubocop', require: false gem 'rubocop', require: false
gem 'ruby_audit', '~> 2.2'
end end
gem 'bundle-audit', '~> 0.1.0' gem 'puma', '~> 6.4'
gem 'rackup', '~> 2.1'

View File

@ -7,11 +7,6 @@ GEM
base64 (0.1.1) base64 (0.1.1)
bigdecimal (3.1.4) bigdecimal (3.1.4)
builder (3.2.4) builder (3.2.4)
bundle-audit (0.1.0)
bundler-audit
bundler-audit (0.9.1)
bundler (>= 1.2.0, < 3)
thor (~> 1.0)
capybara (3.39.2) capybara (3.39.2)
addressable addressable
matrix matrix
@ -106,8 +101,6 @@ GEM
rubocop-ast (1.29.0) rubocop-ast (1.29.0)
parser (>= 3.2.1.0) parser (>= 3.2.1.0)
ruby-progressbar (1.13.0) ruby-progressbar (1.13.0)
ruby_audit (2.2.0)
bundler-audit (~> 0.9.0)
rubyzip (2.3.2) rubyzip (2.3.2)
selenium-webdriver (4.13.1) selenium-webdriver (4.13.1)
rexml (~> 3.2, >= 3.2.5) rexml (~> 3.2, >= 3.2.5)
@ -125,7 +118,6 @@ GEM
mini_portile2 (~> 2.8.0) mini_portile2 (~> 2.8.0)
sys-uname (1.2.3) sys-uname (1.2.3)
ffi (~> 1.1) ffi (~> 1.1)
thor (1.3.0)
tilt (2.3.0) tilt (2.3.0)
unicode-display_width (2.5.0) unicode-display_width (2.5.0)
webrick (1.8.1) webrick (1.8.1)
@ -137,7 +129,6 @@ PLATFORMS
x86_64-freebsd-13 x86_64-freebsd-13
DEPENDENCIES DEPENDENCIES
bundle-audit (~> 0.1.0)
capybara (~> 3.39) capybara (~> 3.39)
cucumber (~> 9.0) cucumber (~> 9.0)
erubi (~> 1.12) erubi (~> 1.12)
@ -146,7 +137,6 @@ DEPENDENCIES
roda (~> 3.72) roda (~> 3.72)
rspec (~> 3.12) rspec (~> 3.12)
rubocop rubocop
ruby_audit (~> 2.2)
selenium-webdriver (~> 4.13) selenium-webdriver (~> 4.13)
sequel (~> 5.72) sequel (~> 5.72)
simplecov simplecov

8
Jenkinsfile vendored
View File

@ -23,14 +23,6 @@ pipeline {
sh 'sequel -m db/migrations sqlite://db/${DB_NAME}' sh 'sequel -m db/migrations sqlite://db/${DB_NAME}'
} }
} }
stage('Audit Dependencies') {
steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
sh 'bundle exec ruby-audit check'
sh 'bundle exec bundle-audit check'
}
}
}
stage('Code Linting') { stage('Code Linting') {
steps { steps {
catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') { catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') {