-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FI-1767: Update core and ruby versions (#18)
- Loading branch information
1 parent
7518e15
commit 4fb0b09
Showing
5 changed files
with
49 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.7.3 | ||
3.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ruby 2.7.3 | ||
ruby 3.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:2.7.3 | ||
FROM ruby:3.1.2 | ||
|
||
ENV INSTALL_PATH=/opt/inferno/ | ||
ENV APP_ENV=production | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Gem::Specification.new do |spec| | ||
spec.name = 'ips_test_kit' | ||
spec.version = '0.0.3' | ||
spec.version = '0.1.0' | ||
spec.authors = ['MITRE'] | ||
spec.email = ['[email protected]'] | ||
spec.date = Time.now.utc.strftime('%Y-%m-%d') | ||
spec.summary = 'IPS Tests' | ||
spec.description = 'IPS Tests' | ||
spec.homepage = 'https://github.com/inferno-framework/ips-test-kit' | ||
spec.license = 'Apache-2.0' | ||
spec.add_runtime_dependency 'inferno_core', '> 0.1.3' | ||
spec.add_runtime_dependency 'inferno_core', '>= 0.4.2' | ||
spec.add_development_dependency 'database_cleaner-sequel', '~> 1.8' | ||
spec.add_development_dependency 'factory_bot', '~> 6.1' | ||
spec.add_development_dependency 'rspec', '~> 3.10' | ||
spec.add_development_dependency 'webmock', '~> 3.11' | ||
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0') | ||
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.2') | ||
spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata['source_code_uri'] = 'https://github.com/inferno-framework/ips-test-kit' | ||
spec.files = [ | ||
|