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 +4 -4
- data/.travis.yml +4 -6
- data/build-graph.gemspec +1 -1
- data/lib/build/graph/version.rb +1 -1
- data/spec/build/graph/graph_spec.rb +2 -1
- metadata +3 -13
- data/spec/build/graph/program/Benchmark.cpp.d +0 -1
- data/spec/build/graph/program/Benchmark.cpp.o +0 -0
- data/spec/build/graph/program/dictionary-sort +0 -0
- data/spec/build/graph/program/main.cpp.d +0 -1
- data/spec/build/graph/program/main.cpp.o +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2e76084a809a973f3ca08927952b9edfd7e49035
|
|
4
|
+
data.tar.gz: 21f2e9d73900ce57c41a6df1e4700e59be1eed42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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.
|
|
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"
|
data/lib/build/graph/version.rb
CHANGED
|
@@ -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
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
main.cpp.o: main.cpp Benchmark.h DictionarySort.h ParallelMergeSort.h
|
|
Binary file
|