cxxproject_valgrind 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ pkg
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ cxxproject_valgrind
2
+ ===================
3
+
4
+ Valgrind support for cxxproject
data/Rakefile.rb CHANGED
@@ -1,34 +1,3 @@
1
- require 'rake/clean'
2
- require 'rubygems/package_task'
1
+ require "bundler/gem_tasks"
3
2
 
4
- desc "Default Task"
5
- task :default => [:install]
6
-
7
- PKG_VERSION = "1.0.5"
8
- PKG_FILES = FileList[
9
- "lib/**/*.rb",
10
- "Rakefile.rb",
11
- "spec/**/*.rb",
12
- ]
13
-
14
- spec = Gem::Specification.new do |s|
15
- s.name = "cxxproject_valgrind"
16
- s.version = PKG_VERSION
17
- s.summary = "valgrind plugin for cxxproject."
18
- s.description = <<-EOF
19
- provides valgrind executable environment.
20
- EOF
21
- s.files = PKG_FILES.to_a
22
- s.require_path = "lib"
23
- s.author = "christian koestlin"
24
- s.email = "christian.koestlin@gmail.com"
25
- s.homepage = 'http://marcmo.github.com/cxxproject/'
26
- s.add_dependency("cxxproject")
27
- end
28
-
29
- Gem::PackageTask.new(spec) {|pkg|}
30
-
31
- desc "install gem"
32
- task :install => [:gem] do
33
- sh "gem install pkg/#{spec.name}-#{spec.version}.gem"
34
- end
3
+ task :package => :build
@@ -0,0 +1,17 @@
1
+ PKG_VERSION = "1.0.6"
2
+
3
+ spec = Gem::Specification.new do |s|
4
+ s.name = "cxxproject_valgrind"
5
+ s.version = PKG_VERSION
6
+ s.summary = "valgrind plugin for cxxproject."
7
+ s.description = <<-EOF
8
+ provides valgrind executable environment.
9
+ EOF
10
+ s.files = `git ls-files`.split($\)
11
+ s.require_path = "lib"
12
+ s.author = "christian koestlin"
13
+ s.email = "christian.koestlin@gmail.com"
14
+ s.homepage = 'http://marcmo.github.com/cxxproject/'
15
+
16
+ s.add_dependency('cxx')
17
+ end
@@ -1,6 +1,6 @@
1
1
  cxx_plugin do |cxxproject2rake, building_blocks, log|
2
2
  def available?
3
- return `which valgrind`
3
+ return `which valgrind` != ""
4
4
  end
5
5
 
6
6
  if not available?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cxxproject_valgrind
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,10 +9,10 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-13 00:00:00.000000000 Z
12
+ date: 2012-07-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: cxxproject
15
+ name: cxx
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
@@ -35,8 +35,11 @@ executables: []
35
35
  extensions: []
36
36
  extra_rdoc_files: []
37
37
  files:
38
- - lib/cxxproject_valgrind/plugin.rb
38
+ - .gitignore
39
+ - README.md
39
40
  - Rakefile.rb
41
+ - cxxproject_valgrind.gemspec
42
+ - lib/cxxproject_valgrind/plugin.rb
40
43
  homepage: http://marcmo.github.com/cxxproject/
41
44
  licenses: []
42
45
  post_install_message: