cxxproject 0.5.69 → 0.5.70

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4241f8b0d6b0af8bc85e0637664820575a19c7ba
4
+ data.tar.gz: 0464a6c1c1c93c98cb72ce16dccfba17d2d8d706
5
+ SHA512:
6
+ metadata.gz: 92eaba35323b2949acf5865da5cfc964129f363f7ebc5b704bd6375eacb12623eef1b3d0aed1717f70511ab38b8ce689b23357d7da3bcc8cc37cef0dab8c4972
7
+ data.tar.gz: 55f0ef37e765852b49745684baa1c5dc87e89121ffb90f3af61df9fc934106a35f226a036059c5918889909ad21091b8789515ef17a9af0c4e202b1dc490d8f8
@@ -15,7 +15,7 @@ module Cxxproject
15
15
  :OBJECT_FILE_FLAG => "-o ",
16
16
  :INCLUDE_PATH_FLAG => "-I",
17
17
  :COMPILE_FLAGS => "-c",
18
- :DEP_FLAGS => "-MMD",
18
+ :DEP_FLAGS => "-MD",
19
19
  :DEP_FLAGS_FILENAME => false,
20
20
  :PREPRO_FLAGS => "-P"
21
21
  })
@@ -25,8 +25,14 @@ module Cxxproject
25
25
  rd.close
26
26
 
27
27
  # seems that pipe cannot handle non-ascii characters right on windows (even with correct encoding)
28
- consoleOutput.gsub!(/\xE2\x80\x98/,"`") # ÔÇÿ
29
- consoleOutput.gsub!(/\xE2\x80\x99/,"'") # ÔÇÖ
28
+
29
+ # seems not to work anymore with Ruby 2.0:
30
+ # consoleOutput.gsub!(/\xE2\x80\x98/,"`") # ÔÇÿ
31
+ # consoleOutput.gsub!(/\xE2\x80\x99/,"'") # ÔÇÖ
32
+
33
+ # to be tested:
34
+ # consoleOutput.encode!('UTF-8', :invalid => :replace, :undef => :replace, :replace => '')
35
+ # consoleOutput.encode!('binary', :invalid => :replace, :undef => :replace, :replace => '')
30
36
 
31
37
  consoleOutput
32
38
  end
@@ -1,7 +1,7 @@
1
1
  module Cxxproject
2
2
  class Version
3
3
  def self.cxxproject
4
- "0.5.69"
4
+ "0.5.70"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,48 +1,52 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: cxxproject
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.5.69
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.70
6
5
  platform: ruby
7
- authors:
6
+ authors:
8
7
  - oliver mueller
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
-
13
- date: 2013-09-10 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
11
+ date: 2014-01-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
16
14
  name: highline
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
19
- none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
23
19
  version: 1.6.0
24
20
  type: :runtime
25
- version_requirements: *id001
26
- - !ruby/object:Gem::Dependency
27
- name: colored
28
21
  prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
30
- none: false
31
- requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
34
- version: "0"
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 1.6.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: colored
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
35
34
  type: :runtime
36
- version_requirements: *id002
37
- description: " Some more high level building blocks for cpp projects.\n"
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: |2
42
+ Some more high level building blocks for cpp projects.
38
43
  email: oliver.mueller@gmail.com
39
- executables:
44
+ executables:
40
45
  - cxx
41
46
  extensions: []
42
-
43
47
  extra_rdoc_files: []
44
-
45
- files:
48
+ files:
49
+ - lib/cxxproject.rb
46
50
  - lib/cxxproject/buildingblocks/binary_library.rb
47
51
  - lib/cxxproject/buildingblocks/building_block.rb
48
52
  - lib/cxxproject/buildingblocks/command_line.rb
@@ -99,7 +103,6 @@ files:
99
103
  - lib/cxxproject/utils/utils.rb
100
104
  - lib/cxxproject/utils/valgrind.rb
101
105
  - lib/cxxproject/version.rb
102
- - lib/cxxproject.rb
103
106
  - lib/tools/project_wizard.rb
104
107
  - Rakefile.rb
105
108
  - spec/building_block_spec.rb
@@ -117,38 +120,33 @@ files:
117
120
  - spec/testdata/multiple_levels/libs/lib1/project.rb
118
121
  - spec/testdata/multiple_levels/libs/lib2/project.rb
119
122
  - spec/testdata/multiple_levels/mainproject/basic/project.rb
120
- - spec/testdata/onlyOneHeader/project.rb
121
123
  - spec/testdata/onlyOneHeader/Rakefile.rb
124
+ - spec/testdata/onlyOneHeader/project.rb
122
125
  - spec/toolchain_spec.rb
123
- - lib/tools/project.rb.template
124
126
  - lib/tools/Rakefile.rb.template
127
+ - lib/tools/project.rb.template
125
128
  - bin/cxx
126
129
  homepage: https://github.com/marcmo/cxxproject
127
130
  licenses: []
128
-
131
+ metadata: {}
129
132
  post_install_message:
130
133
  rdoc_options: []
131
-
132
- require_paths:
134
+ require_paths:
133
135
  - lib
134
- required_ruby_version: !ruby/object:Gem::Requirement
135
- none: false
136
- requirements:
137
- - - ">="
138
- - !ruby/object:Gem::Version
139
- version: "0"
140
- required_rubygems_version: !ruby/object:Gem::Requirement
141
- none: false
142
- requirements:
143
- - - ">="
144
- - !ruby/object:Gem::Version
145
- version: "0"
136
+ required_ruby_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - '>='
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ required_rubygems_version: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - '>='
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
146
  requirements: []
147
-
148
147
  rubyforge_project:
149
- rubygems_version: 1.8.24
148
+ rubygems_version: 2.0.14
150
149
  signing_key:
151
- specification_version: 3
150
+ specification_version: 4
152
151
  summary: Cpp Support for Rake.
153
152
  test_files: []
154
-