Skip to content
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
32 changes: 31 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ executors:

android:
docker:
- image: circleci/android@sha256:1be18bcc7582be501a1986bb222561298c7f7760673a50c21d5ec782b5d70b45
- image: cimg/android:2022.04-node

ios:
macos:
Expand Down Expand Up @@ -112,6 +112,30 @@ commands:
paths:
- .jest

install_ruby_version:
description: Install ruby version with rvm
steps:
- run:
name: Install ruby version with rvm
command: |
set -e
if ! type gpg &>/dev/null
then HOMEBREW_NO_AUTO_UPDATE=1 brew install gpg
fi
for key in \
409B6B1796C275462A1703113804BB82D39DC0E3 \
7D2BAF1CF37B13E2069D6956105BD0E739499BDB \
; do \
gpg --batch --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys "$key" || \
gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || \
gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; \
done
curl -sSL https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm install "ruby-$(cat .ruby-version)"
rvm use "ruby-$(cat .ruby-version)"
echo . $(rvm $(cat .ruby-version) do rvm env --path) >> $BASH_ENV

install_ruby_modules:
description: Install Ruby Dependencies
steps:
Expand Down Expand Up @@ -467,6 +491,7 @@ jobs:
- skip_testing_soft_deploy_when_new_tag
- install_node_version
- install_node_modules
- install_ruby_version
- install_ruby_modules
- setup_sentry
- run:
Expand Down Expand Up @@ -496,6 +521,7 @@ jobs:
- checkout
- install_node_version
- install_node_modules
- install_ruby_version
- install_ruby_modules
- setup_sentry
- run:
Expand Down Expand Up @@ -583,6 +609,7 @@ jobs:
- checkout
- install_node_version
- install_node_modules
- install_ruby_version
- install_ruby_modules
- setup_staging_secrets
- setup_sentry
Expand All @@ -609,6 +636,7 @@ jobs:
- checkout
- install_node_version
- install_node_modules
- install_ruby_version
- install_ruby_modules
- setup_staging_secrets
- setup_sentry
Expand All @@ -635,6 +663,7 @@ jobs:
- checkout
- install_node_version
- install_node_modules
- install_ruby_version
- install_ruby_modules
- setup_production_secrets
- setup_sentry
Expand Down Expand Up @@ -685,6 +714,7 @@ jobs:
- checkout
- install_node_version
- install_node_modules
- install_ruby_version
- install_ruby_modules
- setup_production_secrets
- setup_sentry
Expand Down
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7.5
2 changes: 1 addition & 1 deletion .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
'react-native-fast-image': path.join(paths.appSrc, 'libs/react-native-web-fast-image'),
'react-native-email-link': path.join(paths.appSrc, 'libs/react-native-email-link'),
},
modulesToTranspile: ['@ptomasroos/react-native-multi-slider', '@pass-culture/react-native-profiling'],
modulesToTranspile: ['@ptomasroos/react-native-multi-slider'],
},
},
],
Expand Down
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
source "https://rubygems.org"

# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby '>= 2.7.5'

gem "fastlane"
gem "cocoapods", "~>1.11.2"
gem 'cocoapods', '~> 1.11', '>= 1.11.2'

plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
43 changes: 23 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GEM
specs:
CFPropertyList (3.0.5)
rexml
activesupport (6.1.5)
activesupport (6.1.6)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand All @@ -23,20 +23,20 @@ GEM
artifactory (3.0.15)
atomos (0.1.3)
aws-eventstream (1.2.0)
aws-partitions (1.573.0)
aws-sdk-core (3.130.0)
aws-partitions (1.595.0)
aws-sdk-core (3.131.1)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0)
aws-sigv4 (~> 1.1)
jmespath (~> 1.0)
aws-sdk-kms (1.55.0)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.57.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.113.0)
aws-sdk-s3 (1.114.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4)
aws-sigv4 (1.4.0)
aws-sigv4 (1.5.0)
aws-eventstream (~> 1, >= 1.0.2)
babosa (1.0.4)
claide (1.1.0)
Expand Down Expand Up @@ -92,7 +92,7 @@ GEM
escape (0.0.4)
ethon (0.15.0)
ffi (>= 1.15.0)
excon (0.92.2)
excon (0.92.3)
faraday (1.10.0)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
Expand Down Expand Up @@ -122,7 +122,7 @@ GEM
faraday_middleware (1.2.0)
faraday (~> 1.0)
fastimage (2.2.6)
fastlane (2.205.1)
fastlane (2.206.2)
CFPropertyList (>= 2.3, < 4.0.0)
addressable (>= 2.8, < 3.0.0)
artifactory (~> 3.0)
Expand Down Expand Up @@ -166,9 +166,9 @@ GEM
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
google-apis-androidpublisher_v3 (0.18.0)
google-apis-androidpublisher_v3 (0.21.0)
google-apis-core (>= 0.4, < 2.a)
google-apis-core (0.4.2)
google-apis-core (0.5.0)
addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.16.2, < 2.a)
httpclient (>= 2.8.1, < 3.a)
Expand All @@ -181,37 +181,37 @@ GEM
google-apis-core (>= 0.4, < 2.a)
google-apis-playcustomapp_v1 (0.7.0)
google-apis-core (>= 0.4, < 2.a)
google-apis-storage_v1 (0.12.0)
google-apis-storage_v1 (0.14.0)
google-apis-core (>= 0.4, < 2.a)
google-cloud-core (1.6.0)
google-cloud-env (~> 1.0)
google-cloud-errors (~> 1.0)
google-cloud-env (1.6.0)
faraday (>= 0.17.3, < 3.0)
google-cloud-errors (1.2.0)
google-cloud-storage (1.36.1)
google-cloud-storage (1.36.2)
addressable (~> 2.8)
digest-crc (~> 0.4)
google-apis-iamcredentials_v1 (~> 0.1)
google-apis-storage_v1 (~> 0.1)
google-cloud-core (~> 1.6)
googleauth (>= 0.16.2, < 2.a)
mini_mime (~> 1.0)
googleauth (1.1.2)
googleauth (1.1.3)
faraday (>= 0.17.3, < 3.a)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a)
highline (2.0.3)
http-cookie (1.0.4)
http-cookie (1.0.5)
domain_name (~> 0.5)
httpclient (2.8.3)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
jmespath (1.6.1)
json (2.6.1)
json (2.6.2)
jwt (2.3.0)
memoist (0.16.2)
mini_magick (4.11.0)
Expand All @@ -227,9 +227,9 @@ GEM
optparse (0.1.1)
os (1.1.4)
plist (3.6.0)
public_suffix (4.0.6)
public_suffix (4.0.7)
rake (13.0.6)
representable (3.1.1)
representable (3.2.0)
declarative (< 0.1.0)
trailblazer-option (>= 0.1.1, < 0.2.0)
uber (< 0.2.0)
Expand Down Expand Up @@ -263,7 +263,7 @@ GEM
uber (0.1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.8.1)
unf_ext (0.0.8.2)
unicode-display_width (1.8.0)
webrick (1.7.0)
word_wrap (1.0.0)
Expand All @@ -284,10 +284,13 @@ PLATFORMS
ruby

DEPENDENCIES
cocoapods (~> 1.11.2)
cocoapods (~> 1.11, >= 1.11.2)
fastlane
fastlane-plugin-appcenter
fastlane-plugin-load_json!

RUBY VERSION
ruby 2.7.5p203

BUNDLED WITH
2.2.22
Loading