blob: a2066b85cc8441b4a0e63b1ee1a45b2bef477c79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Hacking HCl
## Running the tests
Use Bundler to install dependencies before you run the tests:
gem install bundler
bundle
rake test
## Running HCl during development
To run HCl in place (e.g. for testing out local changes) you can use bundle exec:
bundle exec bin/hcl
|