cxxproject_valgrind 1.0.5 → 1.0.6
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.
- data/.gitignore +1 -0
- data/README.md +4 -0
- data/Rakefile.rb +2 -33
- data/cxxproject_valgrind.gemspec +17 -0
- data/lib/cxxproject_valgrind/plugin.rb +1 -1
- metadata +7 -4
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
pkg
|
data/README.md
ADDED
data/Rakefile.rb
CHANGED
@@ -1,34 +1,3 @@
|
|
1
|
-
require
|
2
|
-
require 'rubygems/package_task'
|
1
|
+
require "bundler/gem_tasks"
|
3
2
|
|
4
|
-
|
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
|
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.
|
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-
|
12
|
+
date: 2012-07-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
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
|
-
-
|
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:
|