cxxproject_valgrind 1.0.14 → 1.0.15

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5222dd666225ba343dbd376fc6359ba19e9080e5
4
+ data.tar.gz: 4b380295e47e363e25c30a19e1f8c81e5462d407
5
+ SHA512:
6
+ metadata.gz: 6ad77552eae178194b0c5b888974c8d34a3ce6071f26e0e8acccf6c890c40b50c5fb8f666b5ccfc7010669141b3911022e3e15bc1c31735cb89d7233991735d2
7
+ data.tar.gz: db5a66488ea8ae20a6199ad8ad83ccdcd91c7ca558f4c06e2eaa8c9e3c922fbd73e0372cee357d860212faa19288fc24f0a3bd6f9406bba588d90f963e376359
@@ -1,3 +1,3 @@
1
1
  module CxxprojectValgrind
2
- VERSION = "1.0.14"
2
+ VERSION = "1.0.15"
3
3
  end
metadata CHANGED
@@ -1,68 +1,59 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cxxproject_valgrind
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.14
5
- prerelease:
4
+ version: 1.0.15
6
5
  platform: ruby
7
6
  authors:
8
7
  - christian koestlin
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-09-11 00:00:00.000000000 Z
11
+ date: 2016-08-23 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: cxx
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
- description: ! ' provides valgrind executable environment.
31
-
32
- '
27
+ description: " provides valgrind executable environment.\n"
33
28
  email: christian.koestlin@gmail.com
34
29
  executables: []
35
30
  extensions: []
36
31
  extra_rdoc_files: []
37
32
  files:
38
- - .gitignore
39
33
  - README.md
40
- - Rakefile.rb
41
- - cxxproject_valgrind.gemspec
42
34
  - lib/cxxproject_valgrind/plugin.rb
43
35
  - lib/cxxproject_valgrind/version.rb
44
36
  homepage: http://marcmo.github.com/cxxproject/
45
37
  licenses: []
38
+ metadata: {}
46
39
  post_install_message:
47
40
  rdoc_options: []
48
41
  require_paths:
49
42
  - lib
50
43
  required_ruby_version: !ruby/object:Gem::Requirement
51
- none: false
52
44
  requirements:
53
- - - ! '>='
45
+ - - ">="
54
46
  - !ruby/object:Gem::Version
55
47
  version: '0'
56
48
  required_rubygems_version: !ruby/object:Gem::Requirement
57
- none: false
58
49
  requirements:
59
- - - ! '>='
50
+ - - ">="
60
51
  - !ruby/object:Gem::Version
61
52
  version: '0'
62
53
  requirements: []
63
54
  rubyforge_project:
64
- rubygems_version: 1.8.24
55
+ rubygems_version: 2.5.1
65
56
  signing_key:
66
- specification_version: 3
57
+ specification_version: 4
67
58
  summary: valgrind plugin for cxxproject.
68
59
  test_files: []
data/.gitignore DELETED
@@ -1 +0,0 @@
1
- pkg
data/Rakefile.rb DELETED
@@ -1,3 +0,0 @@
1
- require "bundler/gem_tasks"
2
-
3
- task :package => :build
@@ -1,19 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- gem_name = 'cxxproject_valgrind'
3
- require File.expand_path("lib/#{gem_name}/version")
4
-
5
- spec = Gem::Specification.new do |s|
6
- s.name = gem_name
7
- s.version = CxxprojectValgrind::VERSION
8
- s.summary = "valgrind plugin for cxxproject."
9
- s.description = <<-EOF
10
- provides valgrind executable environment.
11
- EOF
12
- s.files = `git ls-files`.split($\)
13
- s.require_path = "lib"
14
- s.author = "christian koestlin"
15
- s.email = "christian.koestlin@gmail.com"
16
- s.homepage = 'http://marcmo.github.com/cxxproject/'
17
-
18
- s.add_dependency('cxx')
19
- end