Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cf54dfd
Enhance RakeUi with user tracking and UI improvements
creeonix Oct 27, 2025
9b6b131
Add log cleanup functionality to RakeTaskLog
creeonix Oct 27, 2025
62cdef8
Merge pull request #1 from fcpeuro/feat-updates
creeonix Oct 27, 2025
c382c58
Bump version
creeonix Oct 27, 2025
b7aeaa2
Merge pull request #2 from fcpeuro/bump-version
creeonix Oct 27, 2025
ab360d4
Create a whitelist config so that only safe tasks are offered
wildbillcat Nov 16, 2025
2050f82
Merge pull request #3 from fcpeuro/prod-improvements
creeonix Nov 17, 2025
fb06a6f
Create a whitelist config so that only safe tasks are offered
wildbillcat Mar 6, 2026
cd2276e
Fix tests due to bundle update
wildbillcat Mar 6, 2026
9d4e844
standardrb
wildbillcat Mar 6, 2026
46e7431
Update bundle
wildbillcat Mar 6, 2026
304cace
Update bundle
wildbillcat Mar 6, 2026
22700ef
Get CI working and pin dependencies for test
wildbillcat Mar 6, 2026
3ae3c17
Update dummy app to rails 7
wildbillcat Mar 6, 2026
7e53f05
Fix oversight on CI
wildbillcat Mar 6, 2026
ff74507
Update README.md
wildbillcat Mar 7, 2026
1698470
Keep temp files after task completion
wildbillcat Mar 7, 2026
960bb59
Truncate data to prevent errors from long running tasks
wildbillcat Mar 12, 2026
5472fed
standardrb fixes
wildbillcat Mar 12, 2026
adfd0d8
Merge pull request #5 from fcpeuro/persistent-usage-storage
wildbillcat Mar 13, 2026
40dd8c4
Update 20260306000000_create_rake_ui_task_logs.rb
wildbillcat Mar 24, 2026
a719302
Merge pull request #6 from fcpeuro/wildbillcat-patch-1
wildbillcat Mar 31, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ executors:
ruby-latest:
resource_class: small
docker:
- image: circleci/ruby:2.7.2
- image: cimg/ruby:3.3.10

# yaml anchor filters
master_only: &master_only
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- run:
name: Install Bundler specific version
command: |
gem install bundler --version "${BUNDLE_VERSION}" --force
gem install bundler --version "2.4.3" --force
bundle config set --local path 'vendor/bundle'
bundle config set --local frozen 'true'
bundle config set --local jobs '4'
Expand Down
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

# Infra Automation
/.circleci @doximity/infra_automation_reviewers
#
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
/test/dummy/tmp/development_secret.txt

.byebug_history
.idea
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.6
3.3.10
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gemspec

group :development do
gem "sqlite3"
gem "sqlite3", "~> 1.4"
end

gem "pry", group: [:development, :test], require: false
gem "rails", "~> 6.1.7.4", group: [:development, :test], require: false
gem "rails", "~> 7.0.0", group: [:development, :test], require: false
gem "minitest", "~> 5.0", group: [:development, :test]
Loading