build-graph 0.3.3 → 0.3.4

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: 0ac0622352764d8a850dc19bd98394fad151e1fe
4
- data.tar.gz: 67f61c902d33f69b7ea262532dd135bd5b58fa95
3
+ metadata.gz: 2e76084a809a973f3ca08927952b9edfd7e49035
4
+ data.tar.gz: 21f2e9d73900ce57c41a6df1e4700e59be1eed42
5
5
  SHA512:
6
- metadata.gz: acaf99a70edf2f1540e5814b70f9e879d48494a8509462a87c262d7cd1000172445bfec444bd2d6eff1bef620f5ebd6eef86470e34be9929edba4cc9a5c9fb76
7
- data.tar.gz: e3abaa8571aac1584b6578fa42f58f1cd3fdc2f51033b080cc3e0a581e3f8327d5acf83bc34669641ca0d0dda4dbb79866400744bde03826052e8c1198e944f2
6
+ metadata.gz: 543ff41f1540ce99bfabf3dfa579b244c1f238cda929eb9a49c1f5e0462e061df33b9d7a49133c7ddba1134166805fe94eb2c72737365700743611c7bc13bf35
7
+ data.tar.gz: 95e764eac361902a50bc00faacdc6463bdec06e3eebe530c149b4891810772524b6bdeb589e2f581abf1aa129b15aa6ae84652dd74746f16f98d50306fcd66db
data/.travis.yml CHANGED
@@ -2,10 +2,8 @@ language: ruby
2
2
  rvm:
3
3
  - "2.0"
4
4
  - "2.1"
5
+ compiler: clang
5
6
  before_install:
6
- # libstdc++-4.8-dev
7
- - sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
8
- # clang++-3.2
9
- - sudo add-apt-repository --yes ppa:h-rayflood/llvm
10
- - sudo apt-get -qq update
11
- - sudo apt-get -qq install libstdc++-4.8-dev clang-3.3
7
+ - sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
8
+ - sudo apt-get -qq update
9
+ - sudo apt-get -qq install libstdc++-4.8-dev
data/build-graph.gemspec CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.required_ruby_version = '>= 2.0'
24
24
 
25
25
  spec.add_dependency "process-group", "~> 0.2.1"
26
- spec.add_dependency "build-files", "~> 0.2.6"
26
+ spec.add_dependency "build-files", "~> 0.2.7"
27
27
 
28
28
  spec.add_dependency "system"
29
29
  spec.add_dependency "rainbow", "~> 2.0.0"
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Build
22
22
  module Graph
23
- VERSION = "0.3.3"
23
+ VERSION = "0.3.4"
24
24
  end
25
25
  end
@@ -83,10 +83,11 @@ module Build::Graph::GraphSpec
83
83
 
84
84
  def run(*arguments)
85
85
  if wet?
86
+ puts Rainbow(arguments.join(' ')).blue
86
87
  status = @group.spawn(*arguments)
87
88
 
88
89
  if status != 0
89
- raise RuntimeError.new(status)
90
+ raise CommandError.new(status)
90
91
  end
91
92
  end
92
93
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.2.6
33
+ version: 0.2.7
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.2.6
40
+ version: 0.2.7
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: system
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -146,15 +146,10 @@ files:
146
146
  - lib/build/graph/walker.rb
147
147
  - spec/build/graph/graph_spec.rb
148
148
  - spec/build/graph/program/Benchmark.cpp
149
- - spec/build/graph/program/Benchmark.cpp.d
150
- - spec/build/graph/program/Benchmark.cpp.o
151
149
  - spec/build/graph/program/Benchmark.h
152
150
  - spec/build/graph/program/DictionarySort.h
153
151
  - spec/build/graph/program/ParallelMergeSort.h
154
- - spec/build/graph/program/dictionary-sort
155
152
  - spec/build/graph/program/main.cpp
156
- - spec/build/graph/program/main.cpp.d
157
- - spec/build/graph/program/main.cpp.o
158
153
  homepage: ''
159
154
  licenses:
160
155
  - MIT
@@ -183,12 +178,7 @@ summary: Build::Graph is a framework for build systems, with specific functional
183
178
  test_files:
184
179
  - spec/build/graph/graph_spec.rb
185
180
  - spec/build/graph/program/Benchmark.cpp
186
- - spec/build/graph/program/Benchmark.cpp.d
187
- - spec/build/graph/program/Benchmark.cpp.o
188
181
  - spec/build/graph/program/Benchmark.h
189
182
  - spec/build/graph/program/DictionarySort.h
190
183
  - spec/build/graph/program/ParallelMergeSort.h
191
- - spec/build/graph/program/dictionary-sort
192
184
  - spec/build/graph/program/main.cpp
193
- - spec/build/graph/program/main.cpp.d
194
- - spec/build/graph/program/main.cpp.o
@@ -1 +0,0 @@
1
- Benchmark.cpp.o: Benchmark.cpp Benchmark.h
@@ -1 +0,0 @@
1
- main.cpp.o: main.cpp Benchmark.h DictionarySort.h ParallelMergeSort.h
Binary file