ceedling 0.20.2 → 0.20.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/bin/ceedling +6 -0
- data/lib/ceedling/version.rb +1 -1
- data/lib/ceedling/version.rb.erb +1 -1
- metadata +1 -2
- data/ceedling-0.19.0.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76c3dcdc10485c56db2c7327e5f9efac6295863c
|
4
|
+
data.tar.gz: 36798430e42c735498bcaca6b7a93c031b1c3adb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b950c43a03327774484752588af61ced5f7b96e6f0421442f0f007e9ebfb644703250e4859b6317bcceca7fe7ce11a39d6b989b44e67366cd2bf25b33134015
|
7
|
+
data.tar.gz: 9be1131263be5c666088cae3c37e0452e7e7cbfd9b2bf91e400a36fe7890b4a5165fd3a888e37f39c7911a091b92ca0a0664d3592bcf0e9ef74993599202ffb5
|
data/README.md
CHANGED
@@ -13,11 +13,22 @@ Documentation and license info exists [in the repo in docs/](docs/CeedlingPacket
|
|
13
13
|
Getting Started (Developers)
|
14
14
|
============================
|
15
15
|
|
16
|
+
First make sure Ruby is installed on your system (if it's not already). Then, from a command prompt:
|
17
|
+
|
18
|
+
> gem install ceedling
|
19
|
+
|
20
|
+
(Alternate Installation for Those Planning to Be Ceedling Developers)
|
21
|
+
======================================================================
|
22
|
+
|
16
23
|
> git clone --recursive https://github.com/throwtheswitch/ceedling.git
|
17
24
|
> cd ceedling
|
18
25
|
> bundle install # Ensures you have all RubyGems needed
|
19
26
|
> bundle execute rake # Run all CMock library tests
|
20
27
|
|
28
|
+
If bundler isn't installed on your system or you run into problems, you might have to install it:
|
29
|
+
|
30
|
+
> sudo gem install bundler
|
31
|
+
|
21
32
|
Using Ceedling inside of a project
|
22
33
|
==================================
|
23
34
|
|
data/bin/ceedling
CHANGED
@@ -188,6 +188,12 @@ else
|
|
188
188
|
options[:args]
|
189
189
|
ARGV.each do |v|
|
190
190
|
case(v)
|
191
|
+
when /^(?:new|examples?)$/
|
192
|
+
puts "\nOops. You called ceedling with argument '#{v}'.\n" +
|
193
|
+
" This is an operation that will create a new project... \n" +
|
194
|
+
" but it looks like you're already in a project. If you really \n" +
|
195
|
+
" want to do this, try moving to an empty folder.\n\n"
|
196
|
+
abort
|
191
197
|
when /--gtest/
|
192
198
|
options[:pretend_we_are_gtest] = true
|
193
199
|
else
|
data/lib/ceedling/version.rb
CHANGED
data/lib/ceedling/version.rb.erb
CHANGED
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.20.
|
4
|
+
version: 0.20.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Karlesky, Mark VanderVoord
|
@@ -61,7 +61,6 @@ files:
|
|
61
61
|
- assets/rakefile_with_guts.rb
|
62
62
|
- assets/test_example_file.c
|
63
63
|
- bin/ceedling
|
64
|
-
- ceedling-0.19.0.gem
|
65
64
|
- ceedling.gemspec
|
66
65
|
- config/test_environment.rb
|
67
66
|
- docs/CeedlingPacket.md
|
data/ceedling-0.19.0.gem
DELETED
Binary file
|