-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update dry-configurable version and bump to v3 (#49)
* chore: update dry-configurable version and bump to v3 * chore: update appraisals * fix: freeze mutable constant
- Loading branch information
Showing
25 changed files
with
185 additions
and
827 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 |
---|---|---|
|
@@ -13,7 +13,5 @@ | |
spec/fixtures/vcr_cassettes/ | ||
coverage | ||
doc | ||
Gemfile.lock | ||
.env | ||
.secrets | ||
.ruby-version |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.git | ||
*.gem | ||
*.rbc | ||
coverage | ||
InstalledFiles | ||
pkg | ||
spec/reports | ||
spec/examples.txt | ||
test/tmp | ||
test/version_tmp | ||
tmp | ||
|
||
# Ignore Byebug command history file. | ||
.byebug_history | ||
|
||
## Specific to RubyMotion: | ||
.dat* | ||
.repl_history | ||
build | ||
*.bridgesupport | ||
build-iPhoneOS | ||
build-iPhoneSimulator | ||
|
||
## Specific to RubyMotion (use of CocoaPods): | ||
# | ||
# We recommend against adding the Pods directory to your .gitignore. However | ||
# you should judge for yourself, the pros and cons are mentioned at: | ||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control | ||
# | ||
# vendor/Pods/ | ||
|
||
## Documentation cache and generated files: | ||
.yardoc | ||
_yardoc | ||
|
||
## Environment normalization: | ||
vendor/bundle | ||
lib/bundler/man | ||
|
||
# for a library or gem, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# Gemfile.lock | ||
# .ruby-version | ||
# .ruby-gemset | ||
|
||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | ||
.rvmrc |
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,41 +1,41 @@ | ||
# frozen_string_literal: true | ||
|
||
appraise 'faraday-1.8.0-dry-0.11' do | ||
gem 'dry-configurable', '0.11.6' | ||
appraise 'faraday-1.8.0-dry-1.0' do | ||
gem 'dry-configurable', '1.0.1' | ||
gem 'faraday', '1.8.0' | ||
end | ||
|
||
appraise 'faraday-2.3.0-dry-0.11' do | ||
gem 'dry-configurable', '0.11.6' | ||
appraise 'faraday-2.3.0-dry-1.0' do | ||
gem 'dry-configurable', '1.0.1' | ||
gem 'faraday', '2.3.0' | ||
end | ||
|
||
appraise 'faraday-1.8.0-dry-0.12' do | ||
gem 'dry-configurable', '0.12.1' | ||
appraise 'faraday-1.8.0-dry-1.0' do | ||
gem 'dry-configurable', '1.0.1' | ||
gem 'faraday', '1.8.0' | ||
end | ||
|
||
appraise 'faraday-2.3.0-dry-0.12' do | ||
gem 'dry-configurable', '0.12.1' | ||
appraise 'faraday-2.3.0-dry-1.0' do | ||
gem 'dry-configurable', '1.0.1' | ||
gem 'faraday', '2.3.0' | ||
end | ||
|
||
appraise 'faraday-1.8.0-dry-0.13' do | ||
gem 'dry-configurable', '0.13.0' | ||
appraise 'faraday-1.8.0-dry-1.0' do | ||
gem 'dry-configurable', '1.0.1' | ||
gem 'faraday', '1.8.0' | ||
end | ||
|
||
appraise 'faraday-2.3.0-dry-0.13' do | ||
gem 'dry-configurable', '0.13.0' | ||
appraise 'faraday-2.3.0-dry-1.0' do | ||
gem 'dry-configurable', '1.0.1' | ||
gem 'faraday', '2.3.0' | ||
end | ||
|
||
appraise 'faraday-1.8.0-dry-0.15' do | ||
gem 'dry-configurable', '0.15.0' | ||
appraise 'faraday-1.8.0-dry-1.0' do | ||
gem 'dry-configurable', '1.0.1' | ||
gem 'faraday', '1.8.0' | ||
end | ||
|
||
appraise 'faraday-2.3.0-dry-0.15' do | ||
gem 'dry-configurable', '0.15.0' | ||
appraise 'faraday-2.3.0-dry-1.0' do | ||
gem 'dry-configurable', '1.0.1' | ||
gem 'faraday', '2.3.0' | ||
end |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM ruby:3.0 | ||
|
||
WORKDIR /usr/src/app | ||
COPY . /usr/src/app/ | ||
# RUN bundle config set frozen 'true' | ||
RUN bundle install | ||
# COPY Gemfile.lock /usr/src/app/Gemfile.lock | ||
RUN pry |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.