Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid booting Rails to generate timestamp #152

Merged
merged 3 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
test_track_rails_client (8.1.1)
test_track_rails_client (8.2.0)
activejob (>= 7.0, < 8.1)
activemodel (>= 7.0, < 8.1)
faraday (>= 0.8)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
test_track_rails_client (8.1.1)
test_track_rails_client (8.2.0)
activejob (>= 7.0, < 8.1)
activemodel (>= 7.0, < 8.1)
faraday (>= 0.8)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
test_track_rails_client (8.1.1)
test_track_rails_client (8.2.0)
activejob (>= 7.0, < 8.1)
activemodel (>= 7.0, < 8.1)
faraday (>= 0.8)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_2.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
test_track_rails_client (8.1.1)
test_track_rails_client (8.2.0)
activejob (>= 7.0, < 8.1)
activemodel (>= 7.0, < 8.1)
faraday (>= 0.8)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_8_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
test_track_rails_client (8.1.1)
test_track_rails_client (8.2.0)
activejob (>= 7.0, < 8.1)
activemodel (>= 7.0, < 8.1)
faraday (>= 0.8)
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/test_track_rails_client_tasks.rake
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace :test_track do
end

desc 'Generates build timestamp for fetching point-in-time split registries'
task generate_build_timestamp: :environment do
task :generate_build_timestamp do # rubocop:disable Rails/RakeEnvironment
cli = TesttrackCli.instance

result = cli.call('generate_build_timestamp')
Expand Down
1 change: 1 addition & 0 deletions lib/test_track_rails_client.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require 'test_track'
require "test_track_rails_client/engine"
require 'testtrack_cli'

module TestTrackRailsClient
end
2 changes: 1 addition & 1 deletion lib/test_track_rails_client/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module TestTrackRailsClient
VERSION = "8.1.1".freeze
VERSION = "8.2.0".freeze
end
File renamed without changes.
File renamed without changes.
Loading