Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
605190577f | ||
|
|
c9c7f46e4a | ||
|
|
f8a779e926 | ||
|
|
e6f991baca | ||
|
|
ae6ab46fa7 |
@@ -1 +1 @@
|
|||||||
2.7.2
|
3.0.0
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
= Changes
|
= Changes
|
||||||
|
|
||||||
|
== 11.0.0 (2020-12-30)
|
||||||
|
|
||||||
|
* Fixed Circle CI configuration for Bundler config path - Brooke Kuhlmann
|
||||||
|
* Added Circle CI explicit Bundle install configuration - Brooke Kuhlmann
|
||||||
|
* Updated to Git Lint 2.0.0 - Brooke Kuhlmann
|
||||||
|
* Updated to Ruby 3.0.0 - Brooke Kuhlmann
|
||||||
|
|
||||||
== 10.0.0 (2020-11-15)
|
== 10.0.0 (2020-11-15)
|
||||||
|
|
||||||
* Added macOS Big Sur support
|
* Added macOS Big Sur support
|
||||||
|
|||||||
2
Gemfile
2
Gemfile
@@ -3,4 +3,4 @@
|
|||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
|
|
||||||
gem "rake", "~> 13.0"
|
gem "rake", "~> 13.0"
|
||||||
gem "git-lint", "~> 1.3"
|
gem "git-lint", "~> 2.0"
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ To install, run:
|
|||||||
----
|
----
|
||||||
git clone https://github.com/bkuhlmann/mac_os.git
|
git clone https://github.com/bkuhlmann/mac_os.git
|
||||||
cd mac_os
|
cd mac_os
|
||||||
git checkout 10.0.0
|
git checkout 11.0.0
|
||||||
----
|
----
|
||||||
|
|
||||||
== Usage
|
== Usage
|
||||||
|
|||||||
@@ -24,9 +24,9 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: Ruby Install
|
name: Ruby Install
|
||||||
command: |
|
command: |
|
||||||
curl https://cache.ruby-lang.org/pub/ruby/${CI_RUBY_VERSION::-2}/ruby-$CI_RUBY_VERSION.tar.bz2 > ../ruby-$CI_RUBY_VERSION.tar.gz
|
|
||||||
cd ..
|
cd ..
|
||||||
tar --extract --bzip2 --verbose --file ruby-$CI_RUBY_VERSION.tar.gz
|
curl https://cache.ruby-lang.org/pub/ruby/${CI_RUBY_VERSION::-2}/ruby-$CI_RUBY_VERSION.tar.gz > ruby-$CI_RUBY_VERSION.tar.gz
|
||||||
|
tar --extract --gzip --verbose --file ruby-$CI_RUBY_VERSION.tar.gz
|
||||||
cd ruby-$CI_RUBY_VERSION
|
cd ruby-$CI_RUBY_VERSION
|
||||||
./configure
|
./configure
|
||||||
make
|
make
|
||||||
@@ -48,7 +48,8 @@ jobs:
|
|||||||
name: Bundler Install
|
name: Bundler Install
|
||||||
command: |
|
command: |
|
||||||
gem update --system
|
gem update --system
|
||||||
bundle install --path vendor/bundle
|
bundle config set path "vendor/bundle"
|
||||||
|
bundle install
|
||||||
|
|
||||||
- type: cache-save
|
- type: cache-save
|
||||||
name: Bundler Store
|
name: Bundler Store
|
||||||
|
|||||||
Reference in New Issue
Block a user