This file contains hidden or 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
headers = { | |
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) ' | |
} |
This file contains hidden or 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
https://www.bloomberg.com/markets2/api/history/USDCLP%3ACUR/PX_LAST?timeframe=5_YEAR&period=daily&volumePeriod=daily |
This file contains hidden or 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
thanks Danton! |
This file contains hidden or 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
code_review(){ | |
docker-compose -f docker-compose.ci.yml run -e PRONTO_GITHUB_ACCESS_TOKEN -e CI_PULL_REQUEST test bundle exec pronto run -f github_pr -c origin/master | |
} |
This file contains hidden or 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
jobs: | |
build: | |
working_directory: ~/app | |
docker: | |
- image: platanus/compose:1.22.0 | |
steps: | |
- checkout | |
- setup_remote_docker |
This file contains hidden or 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
group :test do | |
gem 'brakeman', require: false | |
gem 'fasterer', require: false | |
gem 'pronto' | |
gem 'pronto-brakeman', require: false | |
gem 'pronto-fasterer', require: false | |
gem 'pronto-rubocop', require: false | |
gem 'pronto-scss', require: false | |
gem 'rubocop', require: false | |
gem 'rubocop-rspec', require: false |