ceedling 0.15.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -2
- data/lib/ceedling/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3629788d17df4fc73dc5ccde88d4d730eb6e2a8
|
|
4
|
+
data.tar.gz: 1a2e5b33152e1f4e866216666a8a31186482502c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f3b31981913c03f72ca48ac7e154aaabd4dcc457669166aa0689dbe274561fa5c9cbf613709995685919f14a6edd7575d76a111f4cae79689d52481ef39e6730
|
|
7
|
+
data.tar.gz: 36e21fc258bdd692a1920a56e9d406871a0ceb1c843080dc9130b7ffa5c29690d993f559eafd651df176c362cfed88125e62b06e736f3f8144043d08e94ae4c2
|
data/README.md
CHANGED
|
@@ -9,12 +9,15 @@ to be used without having to worry about external dependencies.
|
|
|
9
9
|
Using Ceedling outside of a project as a gem
|
|
10
10
|
============================================
|
|
11
11
|
|
|
12
|
-
(Note: This is still somewhat experimental.)
|
|
13
|
-
|
|
14
12
|
Ceedling can also be used as a gem. The following Rakefile is the
|
|
15
13
|
bare minimum required in order to use Ceedling this way:
|
|
16
14
|
|
|
17
15
|
require 'ceedling'
|
|
16
|
+
Ceedling.load_project
|
|
17
|
+
|
|
18
|
+
If you want to load a Ceedling project YAML file other than the default `project.yml` (i.e. `./my_config.yml`), you can do:
|
|
19
|
+
|
|
20
|
+
Ceedling.load_project(config: './my_config.yml')
|
|
18
21
|
|
|
19
22
|
Additionally, a project.yml is required. Here is one to get you
|
|
20
23
|
started:
|
data/lib/ceedling/version.rb
CHANGED