cxxproject 0.6.17 → 0.6.18

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.
@@ -1,5 +1,5 @@
1
1
  module Cxxproject
2
- VERSION = "0.6.17"
2
+ VERSION = "0.6.18"
3
3
 
4
4
  class Version
5
5
  def self.cxxproject
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cxxproject
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.17
4
+ version: 0.6.18
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-17 00:00:00.000000000 Z
12
+ date: 2012-07-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colored
@@ -64,15 +64,6 @@ files:
64
64
  - example/big_project/.gitignore
65
65
  - example/big_project/Rakefile_generator.rb
66
66
  - example/big_project/fak.h
67
- - example/ckLayout/cxxproject/Rakefile.rb
68
- - example/ckLayout/io/Io.cpp
69
- - example/ckLayout/io/Io.h
70
- - example/ckLayout/io/project.rb
71
- - example/ckLayout/lang/Lang.cpp
72
- - example/ckLayout/lang/Lang.h
73
- - example/ckLayout/lang/project.rb
74
- - example/ckLayout/projects/test/main.cpp
75
- - example/ckLayout/projects/test/project.rb
76
67
  - example/custom/.gitignore
77
68
  - example/custom/Rakefile.rb
78
69
  - example/custom/foo.cpp
@@ -227,7 +218,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
227
218
  version: '0'
228
219
  segments:
229
220
  - 0
230
- hash: 3633209029536328259
221
+ hash: -3130560578607439146
231
222
  required_rubygems_version: !ruby/object:Gem::Requirement
232
223
  none: false
233
224
  requirements:
@@ -1,4 +0,0 @@
1
- $:.unshift File.join(File.dirname(__FILE__),'..', '..', '..','lib')
2
-
3
- require 'cxxproject'
4
- CxxProject2Rake.new(FileList['**/*project.rb'], "build", "gcc", '..')
@@ -1,7 +0,0 @@
1
- #include <io/Io.h>
2
-
3
- #include <iostream>
4
-
5
- void io() {
6
- std::cout << "io" << std::endl;
7
- }
@@ -1,6 +0,0 @@
1
- #ifndef Io_h_
2
- #define Io_h_
3
-
4
- void io();
5
-
6
- #endif
@@ -1,5 +0,0 @@
1
- cxx_configuration do
2
- source_lib "lang",
3
- :sources => FileList['**/*.cpp'],
4
- :includes => [".."]
5
- end
@@ -1,7 +0,0 @@
1
- #include <lang/Lang.h>
2
-
3
- #include <iostream>
4
-
5
- void lang() {
6
- std::cout << "lang" << std::endl;
7
- }
@@ -1,6 +0,0 @@
1
- #ifndef Lang_h_
2
- #define Lang_h_
3
-
4
- void lang();
5
-
6
- #endif
@@ -1,3 +0,0 @@
1
- cxx_configuration do
2
- source_lib "io", :sources => FileList['**/*.cpp'], :includes => ".."
3
- end
@@ -1,8 +0,0 @@
1
- #include <lang/Lang.h>
2
- #include <io/Io.h>
3
-
4
- int main(int argc, char** args) {
5
- lang();
6
- io();
7
- return 0;
8
- }
@@ -1,6 +0,0 @@
1
- cxx_configuration do
2
- exe "test",
3
- :sources => FileList.new('**/*.cpp'),
4
- :dependencies => ['lang', 'io']
5
- end
6
-