ceedling 0.15.0 → 0.15.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -2
  3. data/lib/ceedling/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 93e5e75f4dbc6f24d4d149af4ec3486bd1a89c52
4
- data.tar.gz: 1f242b5f415f91f82bda4455da047b8f33f96a35
3
+ metadata.gz: a3629788d17df4fc73dc5ccde88d4d730eb6e2a8
4
+ data.tar.gz: 1a2e5b33152e1f4e866216666a8a31186482502c
5
5
  SHA512:
6
- metadata.gz: 001836b3654ddb94a70748db1da1fc00b385ece34409a2e43418fbcf061c37a7fe8741e8350b5196aef43019c5aff931ecdbb824f4e95658cf266bffd7fe435d
7
- data.tar.gz: 8f67b9be15af0db6ed83fcc641d560efe79739f858b2060168257f9f650944b160947082852eae28874b60b2c5a741cd6eccc4cde53bb5992bffeb1b2381a7e6
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:
@@ -2,7 +2,7 @@
2
2
  module Ceedling
3
3
  module Version
4
4
  # @private
5
- GEM = "0.15.0"
5
+ GEM = "0.15.1"
6
6
 
7
7
  # @private
8
8
  CEEDLING = GEM
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ceedling
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Karlesky, Mark VanderVoord