cpp_build 0.0.0 → 0.0.1
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/bin/cpp_build +5 -0
- data/lib/cpp_build.rb +4 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ff31ae4c4641b55b95cc4923afcd21f88b8f544
|
4
|
+
data.tar.gz: 33b88eb60fcbbd5ca3e97e40dfe0cc1c65b99cb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5cbbcd64cb16636183c6cb0c64fbd301ae723b4f9132536db4a531a66fc48d2234194ce6052f3ae5f79457232d40d33929bc27338439b459ac68018ad5960c0
|
7
|
+
data.tar.gz: b3f70d46492a5dfb5b190217ae1b69039e4557168012532d6041b57250e8093c86f169e33d4433238431ca5e1ff1b0de3e937be2e1fff9a3cd63f992df286242
|
data/bin/cpp_build
ADDED
data/lib/cpp_build.rb
CHANGED
@@ -96,9 +96,11 @@ class CppBuild
|
|
96
96
|
|
97
97
|
end
|
98
98
|
|
99
|
+
puts Dir.pwd
|
99
100
|
|
100
101
|
# Process arguments
|
101
102
|
ARGV.each do |a|
|
103
|
+
|
102
104
|
# -r --run
|
103
105
|
# -d <name> --define <name>
|
104
106
|
# -cd --config_debug
|
@@ -107,3 +109,5 @@ ARGV.each do |a|
|
|
107
109
|
# -o <name> --output <name>
|
108
110
|
end
|
109
111
|
|
112
|
+
|
113
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cpp_build
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phil CK
|
@@ -13,10 +13,12 @@ dependencies: []
|
|
13
13
|
description: 'A build system that lets you create cross platform build scripts for
|
14
14
|
C++. '
|
15
15
|
email: phil@cooperking.net
|
16
|
-
executables:
|
16
|
+
executables:
|
17
|
+
- cpp_build
|
17
18
|
extensions: []
|
18
19
|
extra_rdoc_files: []
|
19
20
|
files:
|
21
|
+
- bin/cpp_build
|
20
22
|
- lib/cpp_build.rb
|
21
23
|
homepage: https://github.com/PhilCK/cpp-build
|
22
24
|
licenses:
|