- Moved all files from mac_os/ subdirectory to repository root - Updated README.adoc to reflect simplified architecture - Updated QUICK_INSTALL.md with all current apps - Added claude-cli to install.sh and bin/install_homebrew_formulas - Repository now shows clean file structure without nested mac_os folder - Documentation now accurately describes opinionated installer approach Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
32 lines
696 B
YAML
32 lines
696 B
YAML
version: 2.1
|
|
jobs:
|
|
build:
|
|
working_directory: ~/project
|
|
docker:
|
|
- image: bkuhlmann/alpine-ruby:latest
|
|
steps:
|
|
- checkout
|
|
|
|
- restore_cache:
|
|
name: Gems Restore
|
|
keys:
|
|
- gem-cache-{{.Branch}}-{{checksum "Gemfile"}}
|
|
- gem-cache-
|
|
|
|
- run:
|
|
name: Gems Install
|
|
command: |
|
|
gem update --system
|
|
bundle config set path "vendor/bundle"
|
|
bundle install
|
|
|
|
- save_cache:
|
|
name: Gems Store
|
|
key: gem-cache-{{.Branch}}-{{checksum "Gemfile"}}
|
|
paths:
|
|
- vendor/bundle
|
|
|
|
- run:
|
|
name: Rake
|
|
command: bundle exec rake
|