ceedling 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/.yardopts +1 -0
- data/README.md +48 -0
- data/lib/ceedling.rb +1 -0
- data/lib/ceedling/version.rb +7 -1
- data/lib/ceedling/version.rb.erb +6 -0
- metadata +3 -1
data/.yardopts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--markup markdown --readme README.md --hide-void-return --no-private
|
data/README.md
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
Description
|
2
|
+
===========
|
3
|
+
[Ceedling](http://throwtheswitch.org/) is a set of tools and libraries for testing and building C applications. This gem is the distribution mechanism for ceedling. Be aware that gem is *not* ceedling itself.
|
4
|
+
|
5
|
+
Usage
|
6
|
+
=====
|
7
|
+
|
8
|
+
New project
|
9
|
+
-----------
|
10
|
+
|
11
|
+
ceedling new PROJECT
|
12
|
+
|
13
|
+
Creates a new directory named PROJECT and deposits ceedling into the new directory.
|
14
|
+
|
15
|
+
Update project
|
16
|
+
--------------
|
17
|
+
|
18
|
+
ceedling update DIRECTORY
|
19
|
+
|
20
|
+
Updates an existing project with the newest ceedling code in the gem. To update, follow these steps:
|
21
|
+
|
22
|
+
1. Remove the vendor/ceedling directory. Take care when doing this; make sure you do it in a way that your version control system can handle.
|
23
|
+
1. Run ceedling update. Pass it the name of the directory that vendor/ceedling should go into.
|
24
|
+
|
25
|
+
`ceedling update .`
|
26
|
+
|
27
|
+
will copy ceedling to ./vendor/ceedling.
|
28
|
+
1. Add the new directory to your version control system.
|
29
|
+
|
30
|
+
Print ceedling versions
|
31
|
+
-----------------------
|
32
|
+
|
33
|
+
ceedling version
|
34
|
+
|
35
|
+
This will print the version of the ceedling gem and all of the ceedling components it packages (Ceedling, Unity, CMock, CException).
|
36
|
+
|
37
|
+
Resources
|
38
|
+
=========
|
39
|
+
Ceedling, Unity, CMock, and CException are all available at [throwtheswitch](http://throwtheswitch.org/).
|
40
|
+
|
41
|
+
Authors
|
42
|
+
=======
|
43
|
+
* Mike Karlesky (michael@karlesky.net)
|
44
|
+
* Mark VanderVoord (mvandervoord@gmail.com)
|
45
|
+
* Greg Williams (williams@atomicobject.com)
|
46
|
+
* Matt Fletcher (fletcher@atomicobject.com)
|
47
|
+
* © 2011 [Atomic Object](http://www.atomicobject.com/)
|
48
|
+
* More Atomic Object [open source](http://www.atomicobject.com/pages/Software+Commons) projects
|
data/lib/ceedling.rb
CHANGED
data/lib/ceedling/version.rb
CHANGED
@@ -1,10 +1,16 @@
|
|
1
|
+
# @private
|
1
2
|
module Ceedling
|
2
3
|
module Version
|
3
|
-
|
4
|
+
# @private
|
5
|
+
GEM = "0.0.2"
|
4
6
|
|
7
|
+
# @private
|
5
8
|
CEEDLING = "0.9.157"
|
9
|
+
# @private
|
6
10
|
CEXCEPTION = "1.2.0.16"
|
11
|
+
# @private
|
7
12
|
CMOCK = "2.0.209"
|
13
|
+
# @private
|
8
14
|
UNITY = "2.0.118"
|
9
15
|
end
|
10
16
|
end
|
data/lib/ceedling/version.rb.erb
CHANGED
@@ -1,10 +1,16 @@
|
|
1
|
+
# @private
|
1
2
|
module Ceedling
|
2
3
|
module Version
|
4
|
+
# @private
|
3
5
|
GEM = "0.0.1"
|
4
6
|
|
7
|
+
# @private
|
5
8
|
CEEDLING = "<%= versions["CEEDLING"] %>"
|
9
|
+
# @private
|
6
10
|
CEXCEPTION = "<%= versions["CEXCEPTION"] %>"
|
11
|
+
# @private
|
7
12
|
CMOCK = "<%= versions["CMOCK"] %>"
|
13
|
+
# @private
|
8
14
|
UNITY = "<%= versions["UNITY"] %>"
|
9
15
|
end
|
10
16
|
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ceedling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Mike Karlesky, Mark VanderVoord
|
@@ -38,8 +38,10 @@ extra_rdoc_files: []
|
|
38
38
|
files:
|
39
39
|
- .gitignore
|
40
40
|
- .vim
|
41
|
+
- .yardopts
|
41
42
|
- Gemfile
|
42
43
|
- LICENSE
|
44
|
+
- README.md
|
43
45
|
- Rakefile
|
44
46
|
- bin/ceedling
|
45
47
|
- ceedling.gemspec
|