ceedling 0.15.4 → 0.15.5
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 +7 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +9 -13
- data/README.md +0 -4
- data/Rakefile +2 -6
- data/bin/ceedling +1 -1
- data/ceedling.gemspec +2 -3
- data/lib/ceedling/configurator_builder.rb +70 -63
- data/lib/ceedling/defaults.rb +21 -17
- data/lib/ceedling/dependinator.rb +12 -4
- data/lib/ceedling/generator.rb +1 -3
- data/lib/ceedling/generator_test_runner.rb +2 -2
- data/lib/ceedling/tasks_base.rake +16 -9
- data/lib/ceedling/version.rb +1 -1
- data/lib/ceedling/version.rb.erb +16 -0
- data/release/build.info +2 -0
- data/release/version.info +1 -0
- data/spec/ceedling_spec.rb +27 -27
- data/spec/par_map_spec.rb +8 -8
- data/spec/preprocessinator_extractor_spec.rb +2 -2
- data/spec/preprocessinator_includes_handler_spec.rb +24 -24
- data/spec/spec_helper.rb +3 -3
- data/spec/spec_system_helper.rb +13 -13
- data/spec/system/deployment_spec.rb +9 -9
- data/test_graveyard/unit/busted/configurator_builder_test.rb +70 -68
- metadata +17 -20
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ceedling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
5
|
-
prerelease:
|
4
|
+
version: 0.15.5
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Mike Karlesky, Mark VanderVoord
|
@@ -11,38 +10,34 @@ authors:
|
|
11
10
|
autorequire:
|
12
11
|
bindir: bin
|
13
12
|
cert_chain: []
|
14
|
-
date: 2014-
|
13
|
+
date: 2014-08-01 00:00:00.000000000 Z
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
17
16
|
name: thor
|
18
17
|
requirement: !ruby/object:Gem::Requirement
|
19
|
-
none: false
|
20
18
|
requirements:
|
21
|
-
- -
|
19
|
+
- - '>='
|
22
20
|
- !ruby/object:Gem::Version
|
23
21
|
version: 0.14.5
|
24
22
|
type: :runtime
|
25
23
|
prerelease: false
|
26
24
|
version_requirements: !ruby/object:Gem::Requirement
|
27
|
-
none: false
|
28
25
|
requirements:
|
29
|
-
- -
|
26
|
+
- - '>='
|
30
27
|
- !ruby/object:Gem::Version
|
31
28
|
version: 0.14.5
|
32
29
|
- !ruby/object:Gem::Dependency
|
33
30
|
name: rake
|
34
31
|
requirement: !ruby/object:Gem::Requirement
|
35
|
-
none: false
|
36
32
|
requirements:
|
37
|
-
- -
|
33
|
+
- - '>='
|
38
34
|
- !ruby/object:Gem::Version
|
39
35
|
version: 0.8.7
|
40
36
|
type: :runtime
|
41
37
|
prerelease: false
|
42
38
|
version_requirements: !ruby/object:Gem::Requirement
|
43
|
-
none: false
|
44
39
|
requirements:
|
45
|
-
- -
|
40
|
+
- - '>='
|
46
41
|
- !ruby/object:Gem::Version
|
47
42
|
version: 0.8.7
|
48
43
|
description: Ceedling provides a set of tools to deploy its guts in a folder or which
|
@@ -58,8 +53,6 @@ files:
|
|
58
53
|
- vendor/cmock/docs/CMock Summary.pdf
|
59
54
|
- vendor/unity/docs/Unity Summary.pdf
|
60
55
|
- docs/CeedlingPacket.pdf
|
61
|
-
- vendor/cmock/docs/CMock_Summary.md
|
62
|
-
- docs/CeedlingPacket.md
|
63
56
|
- vendor/cmock/lib/cmock.rb
|
64
57
|
- vendor/cmock/lib/cmock_config.rb
|
65
58
|
- vendor/cmock/lib/cmock_file_writer.rb
|
@@ -110,6 +103,7 @@ files:
|
|
110
103
|
- ceedling.gemspec
|
111
104
|
- config/test_environment.rb
|
112
105
|
- docs/CeedlingLogo.png
|
106
|
+
- docs/CeedlingPacket.md
|
113
107
|
- docs/CeedlingPacket.odt
|
114
108
|
- examples/blinky/project.yml
|
115
109
|
- examples/blinky/rakefile.rb
|
@@ -276,6 +270,7 @@ files:
|
|
276
270
|
- lib/ceedling/tool_executor_helper.rb
|
277
271
|
- lib/ceedling/verbosinator.rb
|
278
272
|
- lib/ceedling/version.rb
|
273
|
+
- lib/ceedling/version.rb.erb
|
279
274
|
- lib/ceedling/yaml_wrapper.rb
|
280
275
|
- lib/ceedling.rb
|
281
276
|
- license.txt
|
@@ -303,6 +298,8 @@ files:
|
|
303
298
|
- plugins/xml_tests_report/xml_tests_report.rb
|
304
299
|
- Rakefile
|
305
300
|
- README.md
|
301
|
+
- release/build.info
|
302
|
+
- release/version.info
|
306
303
|
- spec/ceedling_spec.rb
|
307
304
|
- spec/configurator_builder_spec.rb
|
308
305
|
- spec/configurator_helper_spec.rb
|
@@ -403,6 +400,7 @@ files:
|
|
403
400
|
- vendor/c_exception/test/TestException.c
|
404
401
|
- vendor/c_exception/test/TestException_Runner.c
|
405
402
|
- vendor/cmock/docs/CMock Summary.odt
|
403
|
+
- vendor/cmock/docs/CMock_Summary.md
|
406
404
|
- vendor/cmock/docs/license.txt
|
407
405
|
- vendor/cmock/examples/gcc.yml
|
408
406
|
- vendor/cmock/examples/iar_v4.yml
|
@@ -851,28 +849,27 @@ files:
|
|
851
849
|
homepage: http://throwtheswitch.org/
|
852
850
|
licenses:
|
853
851
|
- MIT
|
852
|
+
metadata: {}
|
854
853
|
post_install_message:
|
855
854
|
rdoc_options: []
|
856
855
|
require_paths:
|
857
856
|
- lib
|
858
857
|
- vendor/cmock/lib
|
859
858
|
required_ruby_version: !ruby/object:Gem::Requirement
|
860
|
-
none: false
|
861
859
|
requirements:
|
862
|
-
- -
|
860
|
+
- - '>='
|
863
861
|
- !ruby/object:Gem::Version
|
864
862
|
version: '0'
|
865
863
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
866
|
-
none: false
|
867
864
|
requirements:
|
868
|
-
- -
|
865
|
+
- - '>='
|
869
866
|
- !ruby/object:Gem::Version
|
870
867
|
version: '0'
|
871
868
|
requirements: []
|
872
|
-
rubyforge_project:
|
873
|
-
rubygems_version:
|
869
|
+
rubyforge_project:
|
870
|
+
rubygems_version: 2.0.14
|
874
871
|
signing_key:
|
875
|
-
specification_version:
|
872
|
+
specification_version: 4
|
876
873
|
summary: Ceedling is a set of tools for the automation of builds and test running
|
877
874
|
for C
|
878
875
|
test_files:
|