ceedling 0.20.2 → 0.20.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1aff03f6dbcd85cb8d6bf618998935423324403e
4
- data.tar.gz: 393d461963ddd536aa561916ed2c97ef9ba388e5
3
+ metadata.gz: 76c3dcdc10485c56db2c7327e5f9efac6295863c
4
+ data.tar.gz: 36798430e42c735498bcaca6b7a93c031b1c3adb
5
5
  SHA512:
6
- metadata.gz: 5210173ce2d66525a3a032639d2c71493b06b8e92ce7a753325cbed191eb78e0914dd1d848fdb6634df1f12012ddaa7445fa5c47cfce300d1e4638d85c50c32d
7
- data.tar.gz: dd6b7a3ded702d7661924e8246449fc9aab3ea1768c154c247752e0981483bb2fa942579cc612c4ddc5e019f93a12fe68bbf5772bbdc72475616557e73c90e11
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
 
@@ -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
@@ -2,7 +2,7 @@
2
2
  module Ceedling
3
3
  module Version
4
4
  # @private
5
- GEM = "0.20.2"
5
+ GEM = "0.20.3"
6
6
  # @private
7
7
  CEEDLING = GEM
8
8
  # @private
@@ -2,7 +2,7 @@
2
2
  module Ceedling
3
3
  module Version
4
4
  # @private
5
- GEM = "0.18.0"
5
+ GEM = "0.20.3"
6
6
  # @private
7
7
  CEEDLING = "<%= versions["CEEDLING"] %>"
8
8
  # @private
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.2
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
Binary file