Skip to content

Commit

Permalink
chore: update dry-configurable version and bump to v3 (#49)
Browse files Browse the repository at this point in the history
* chore: update dry-configurable version and bump to v3

* chore: update appraisals

* fix: freeze mutable constant
  • Loading branch information
saiqulhaq authored Dec 1, 2022
1 parent a470674 commit c5f2228
Show file tree
Hide file tree
Showing 25 changed files with 185 additions and 827 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,5 @@
spec/fixtures/vcr_cassettes/
coverage
doc
Gemfile.lock
.env
.secrets
.ruby-version
47 changes: 47 additions & 0 deletions .stignore
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
32 changes: 16 additions & 16 deletions Appraisals
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
8 changes: 8 additions & 0 deletions Dockerfile
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
2 changes: 1 addition & 1 deletion firebase_dynamic_link.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.add_runtime_dependency 'case_transform2', '>= 1.0', '< 2.0'
spec.add_runtime_dependency 'dry-configurable', '>= 0.9', '< 1.0'
spec.add_runtime_dependency 'dry-configurable', '>= 1.0', '< 2.0'
spec.add_runtime_dependency 'faraday', '>= 0.16', '< 3.0'
spec.add_runtime_dependency 'faraday-net_http', '>= 1.0', '< 3.0'

Expand Down
129 changes: 0 additions & 129 deletions gemfiles/faraday_1.8.0_dry_0.11.gemfile.lock

This file was deleted.

8 changes: 0 additions & 8 deletions gemfiles/faraday_1.8.0_dry_0.12.gemfile

This file was deleted.

127 changes: 0 additions & 127 deletions gemfiles/faraday_1.8.0_dry_0.12.gemfile.lock

This file was deleted.

Loading

0 comments on commit c5f2228

Please sign in to comment.