File tree Expand file tree Collapse file tree 6 files changed +35
-6
lines changed
Expand file tree Collapse file tree 6 files changed +35
-6
lines changed Original file line number Diff line number Diff line change 1+ 2.6.6
Original file line number Diff line number Diff line change 1+ # Add homebrew-based depencencies here
2+ brew 'coreutils' # Dependencies for natively compiling the json gem. See https://www.gnu.org/software/coreutils/
Original file line number Diff line number Diff line change 11# IsItUp Changelog
22
3+ ## 0.0.4
4+ - Added ` .ruby-version ` file with a recent version of Ruby
5+ - Added ` Brewfile ` with the GNU coreutils dependency
6+ - Added ` bin/bootstrap_macos ` to help macOS users get bootstrapped for development
7+ - Updated README with additional instructions for getting started
8+
39## 0.0.3
410- Added ` bin/console ` for local testing
511- Added ` bin/setup ` for easier installation
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Or install it yourself as:
2020
2121## Usage
2222
23- IsItUp provides one monitoring URI that returns a JSON response:
23+ IsItUp provides a monitoring URI that returns a JSON response:
2424
2525``` ruby
2626% curl your- domain/ is_it_up
@@ -30,10 +30,12 @@ IsItUp provides one monitoring URI that returns a JSON response:
3030## Contributing
3131
32321 . Fork it ( http://github.com/customink/is_it_up/fork )
33- 2 . Create your feature branch (` git checkout -b my-new-feature ` )
34- 3 . Commit your changes (` git commit -am 'Add some feature' ` )
35- 4 . Push to the branch (` git push origin my-new-feature ` )
36- 5 . Create new Pull Request
33+ 2 . Run ` bin/bootstrap_macos ` (if using macOS) and ` bin/setup ` to ensure your environment is configured for development
34+ 3 . Run ` bin/test ` to ensure all tests pass
35+ 4 . Create your feature branch (` git checkout -b my-new-feature ` )
36+ 5 . Commit your changes (` git commit -am 'Add some feature' ` )
37+ 6 . Push to the branch (` git push origin my-new-feature ` )
38+ 7 . Create new Pull Request
3739
3840## Kudos
3941
Original file line number Diff line number Diff line change 1+
2+ #!/bin/sh
3+
4+ # script/bootstrap: Resolve all dependencies that the application requires to
5+ # run.
6+
7+ set -e
8+
9+ cd "$(dirname "$0")/.."
10+
11+ if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
12+ brew bundle check || {
13+ echo "==> Installing Homebrew dependencies..."
14+ brew bundle
15+ }
16+ fi
17+
18+ brew bootstrap-rbenv-ruby
Original file line number Diff line number Diff line change 11module IsItUp
2- VERSION = "0.0.3 "
2+ VERSION = "0.0.4 "
33end
You can’t perform that action at this time.
0 commit comments