engineyard-visualvm 0.5.3-java → 0.5.4-java
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/ChangeLog +13 -0
- data/LICENSE.txt +1 -1
- data/Rakefile +1 -1
- data/bin/ey-visualvm +1 -1
- data/cookbooks/gems/recipes/default.rb +6 -0
- data/cookbooks/jruby/attributes/default.rb +6 -0
- data/cookbooks/jruby/recipes/default.rb +6 -0
- data/cookbooks/server/recipes/default.rb +6 -0
- data/cookbooks/vagrant_main/recipes/default.rb +6 -0
- data/engineyard-visualvm-java.gemspec +15 -17
- data/engineyard-visualvm.gemspec +14 -16
- data/lib/engineyard-visualvm.rb +1 -1
- data/lib/engineyard-visualvm/cli.rb +1 -2
- data/lib/engineyard-visualvm/version.rb +2 -2
- data/spec/engineyard-visualvm_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +143 -142
data/ChangeLog
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
2012-01-31 Nick Sieger <nick@nicksieger.com>
|
|
2
|
+
|
|
3
|
+
* Release 0.5.4
|
|
4
|
+
|
|
5
|
+
* Don't explicitly require 'thor' before 'engineyard'
|
|
6
|
+
|
|
7
|
+
2011-12-21 Nick Sieger <nick@nicksieger.com>
|
|
8
|
+
|
|
9
|
+
* Release 0.5.3
|
|
10
|
+
|
|
11
|
+
* Use different gemspecs for ruby and java platforms (to account
|
|
12
|
+
for jruby-openssl)
|
|
13
|
+
|
|
1
14
|
2011-12-13 Nick Sieger <nick@nicksieger.com>
|
|
2
15
|
|
|
3
16
|
* (Changes): Release 0.5.2
|
data/LICENSE.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
engineyard-visualvm is provided under the terms of the MIT license.
|
|
2
2
|
|
|
3
|
-
engineyard-visualvm (c) 2011 Engine Yard, Inc.
|
|
3
|
+
engineyard-visualvm (c) 2011-2012 Engine Yard, Inc.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person
|
|
6
6
|
obtaining a copy of this software and associated documentation files
|
data/Rakefile
CHANGED
data/bin/ey-visualvm
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
|
-
s.name =
|
|
5
|
-
s.version = "0.5.
|
|
6
|
-
s.platform =
|
|
4
|
+
s.name = "engineyard-visualvm"
|
|
5
|
+
s.version = "0.5.4"
|
|
6
|
+
s.platform = "java"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
9
|
-
s.authors = [
|
|
10
|
-
s.date =
|
|
11
|
-
s.description =
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
s.
|
|
15
|
-
s.
|
|
16
|
-
s.
|
|
17
|
-
s.
|
|
18
|
-
s.
|
|
19
|
-
s.
|
|
20
|
-
s.
|
|
21
|
-
s.summary = %q{Client and server helpers for using JMX and VisualVM with EY Cloud.}
|
|
22
|
-
s.test_files = [%q{spec/engineyard-visualvm_spec.rb}, %q{spec/spec_helper.rb}]
|
|
9
|
+
s.authors = ["Nick Sieger"]
|
|
10
|
+
s.date = "2012-01-31"
|
|
11
|
+
s.description = "This provides a Java agent and command-line utility to enable\n JMX in any Java process such that it can be accessed through a firewall,\n and a VisualVM launcher aid to connect to that process through ssh."
|
|
12
|
+
s.email = ["nick@nicksieger.com"]
|
|
13
|
+
s.executables = ["ey-visualvm"]
|
|
14
|
+
s.files = [".gitignore", "ChangeLog", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "Vagrantfile", "bin/ey-visualvm", "cookbooks/apt/README.md", "cookbooks/apt/files/default/apt-cacher", "cookbooks/apt/files/default/apt-cacher.conf", "cookbooks/apt/files/default/apt-proxy-v2.conf", "cookbooks/apt/metadata.json", "cookbooks/apt/metadata.rb", "cookbooks/apt/providers/repository.rb", "cookbooks/apt/recipes/cacher-client.rb", "cookbooks/apt/recipes/cacher.rb", "cookbooks/apt/recipes/default.rb", "cookbooks/apt/resources/repository.rb", "cookbooks/gems/recipes/default.rb", "cookbooks/java/README.md", "cookbooks/java/attributes/default.rb", "cookbooks/java/files/default/java.seed", "cookbooks/java/metadata.json", "cookbooks/java/metadata.rb", "cookbooks/java/recipes/default.rb", "cookbooks/java/recipes/openjdk.rb", "cookbooks/java/recipes/sun.rb", "cookbooks/jruby/attributes/default.rb", "cookbooks/jruby/recipes/default.rb", "cookbooks/server/recipes/default.rb", "cookbooks/server/templates/default/server.sh.erb", "cookbooks/vagrant_main/recipes/default.rb", "engineyard-visualvm-java.gemspec", "engineyard-visualvm.gemspec", "engineyard-visualvm.gemspec.in", "ext/org/jruby/ext/jmx/Agent.java", "ext/org/jruby/ext/jmx/JavaHome.java", "ext/org/jruby/ext/jmx/RMIServerSocketFactoryImpl.java", "lib/engineyard-visualvm.rb", "lib/engineyard-visualvm/agent.jar", "lib/engineyard-visualvm/cli.rb", "lib/engineyard-visualvm/version.rb", "spec/engineyard-visualvm_spec.rb", "spec/spec_helper.rb"]
|
|
15
|
+
s.homepage = "https://github.com/engineyard/engineyard-visualvm"
|
|
16
|
+
s.require_paths = ["lib"]
|
|
17
|
+
s.rubyforge_project = "jruby-extras"
|
|
18
|
+
s.rubygems_version = "1.8.15"
|
|
19
|
+
s.summary = "Client and server helpers for using JMX and VisualVM with EY Cloud."
|
|
20
|
+
s.test_files = ["spec/engineyard-visualvm_spec.rb", "spec/spec_helper.rb"]
|
|
23
21
|
|
|
24
22
|
if s.respond_to? :specification_version then
|
|
25
23
|
s.specification_version = 3
|
data/engineyard-visualvm.gemspec
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
|
-
s.name =
|
|
5
|
-
s.version = "0.5.
|
|
4
|
+
s.name = "engineyard-visualvm"
|
|
5
|
+
s.version = "0.5.4"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
-
s.authors = [
|
|
9
|
-
s.date =
|
|
10
|
-
s.description =
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
s.
|
|
14
|
-
s.
|
|
15
|
-
s.
|
|
16
|
-
s.
|
|
17
|
-
s.
|
|
18
|
-
s.
|
|
19
|
-
s.
|
|
20
|
-
s.summary = %q{Client and server helpers for using JMX and VisualVM with EY Cloud.}
|
|
21
|
-
s.test_files = [%q{spec/engineyard-visualvm_spec.rb}, %q{spec/spec_helper.rb}]
|
|
8
|
+
s.authors = ["Nick Sieger"]
|
|
9
|
+
s.date = "2012-01-31"
|
|
10
|
+
s.description = "This provides a Java agent and command-line utility to enable\n JMX in any Java process such that it can be accessed through a firewall,\n and a VisualVM launcher aid to connect to that process through ssh."
|
|
11
|
+
s.email = ["nick@nicksieger.com"]
|
|
12
|
+
s.executables = ["ey-visualvm"]
|
|
13
|
+
s.files = [".gitignore", "ChangeLog", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "Vagrantfile", "bin/ey-visualvm", "cookbooks/apt/README.md", "cookbooks/apt/files/default/apt-cacher", "cookbooks/apt/files/default/apt-cacher.conf", "cookbooks/apt/files/default/apt-proxy-v2.conf", "cookbooks/apt/metadata.json", "cookbooks/apt/metadata.rb", "cookbooks/apt/providers/repository.rb", "cookbooks/apt/recipes/cacher-client.rb", "cookbooks/apt/recipes/cacher.rb", "cookbooks/apt/recipes/default.rb", "cookbooks/apt/resources/repository.rb", "cookbooks/gems/recipes/default.rb", "cookbooks/java/README.md", "cookbooks/java/attributes/default.rb", "cookbooks/java/files/default/java.seed", "cookbooks/java/metadata.json", "cookbooks/java/metadata.rb", "cookbooks/java/recipes/default.rb", "cookbooks/java/recipes/openjdk.rb", "cookbooks/java/recipes/sun.rb", "cookbooks/jruby/attributes/default.rb", "cookbooks/jruby/recipes/default.rb", "cookbooks/server/recipes/default.rb", "cookbooks/server/templates/default/server.sh.erb", "cookbooks/vagrant_main/recipes/default.rb", "engineyard-visualvm-java.gemspec", "engineyard-visualvm.gemspec", "engineyard-visualvm.gemspec.in", "ext/org/jruby/ext/jmx/Agent.java", "ext/org/jruby/ext/jmx/JavaHome.java", "ext/org/jruby/ext/jmx/RMIServerSocketFactoryImpl.java", "lib/engineyard-visualvm.rb", "lib/engineyard-visualvm/agent.jar", "lib/engineyard-visualvm/cli.rb", "lib/engineyard-visualvm/version.rb", "spec/engineyard-visualvm_spec.rb", "spec/spec_helper.rb"]
|
|
14
|
+
s.homepage = "https://github.com/engineyard/engineyard-visualvm"
|
|
15
|
+
s.require_paths = ["lib"]
|
|
16
|
+
s.rubyforge_project = "jruby-extras"
|
|
17
|
+
s.rubygems_version = "1.8.15"
|
|
18
|
+
s.summary = "Client and server helpers for using JMX and VisualVM with EY Cloud."
|
|
19
|
+
s.test_files = ["spec/engineyard-visualvm_spec.rb", "spec/spec_helper.rb"]
|
|
22
20
|
|
|
23
21
|
if s.respond_to? :specification_version then
|
|
24
22
|
s.specification_version = 3
|
data/lib/engineyard-visualvm.rb
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
#--
|
|
2
|
-
# Copyright (c) 2011 Engine Yard, Inc.
|
|
2
|
+
# Copyright (c) 2011-2012 Engine Yard, Inc.
|
|
3
3
|
# See the file LICENSE.txt included with the distribution for
|
|
4
4
|
# software license details.
|
|
5
5
|
#++
|
|
6
6
|
|
|
7
|
-
require "thor"
|
|
8
7
|
require "childprocess"
|
|
9
8
|
require "socket"
|
|
10
9
|
require "engineyard"
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#--
|
|
2
|
-
# Copyright (c) 2011 Engine Yard, Inc.
|
|
2
|
+
# Copyright (c) 2011-2012 Engine Yard, Inc.
|
|
3
3
|
# See the file LICENSE.txt included with the distribution for
|
|
4
4
|
# software license details.
|
|
5
5
|
#++
|
|
6
6
|
|
|
7
7
|
module EngineYard
|
|
8
8
|
module VisualVM
|
|
9
|
-
VERSION = "0.5.
|
|
9
|
+
VERSION = "0.5.4"
|
|
10
10
|
end
|
|
11
11
|
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,157 +1,158 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: engineyard-visualvm
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
version: 0.5.
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.5.4
|
|
6
6
|
platform: java
|
|
7
|
-
authors:
|
|
8
|
-
|
|
9
|
-
autorequire:
|
|
7
|
+
authors:
|
|
8
|
+
- Nick Sieger
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
12
|
+
date: 2012-01-31 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: childprocess
|
|
16
|
+
version_requirements: &2056 !ruby/object:Gem::Requirement
|
|
17
|
+
requirements:
|
|
18
|
+
- - ! '>='
|
|
19
|
+
- !ruby/object:Gem::Version
|
|
20
|
+
version: !binary |-
|
|
21
|
+
MA==
|
|
22
|
+
none: false
|
|
23
|
+
requirement: *2056
|
|
24
|
+
prerelease: false
|
|
25
|
+
type: :runtime
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: engineyard
|
|
28
|
+
version_requirements: &2074 !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ! '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: !binary |-
|
|
33
|
+
MA==
|
|
34
|
+
none: false
|
|
35
|
+
requirement: *2074
|
|
36
|
+
prerelease: false
|
|
37
|
+
type: :runtime
|
|
38
|
+
- !ruby/object:Gem::Dependency
|
|
39
|
+
name: jruby-openssl
|
|
40
|
+
version_requirements: &2090 !ruby/object:Gem::Requirement
|
|
41
|
+
requirements:
|
|
42
|
+
- - ! '>='
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: !binary |-
|
|
45
|
+
MA==
|
|
46
|
+
none: false
|
|
47
|
+
requirement: *2090
|
|
48
|
+
prerelease: false
|
|
49
|
+
type: :runtime
|
|
50
|
+
- !ruby/object:Gem::Dependency
|
|
51
|
+
name: ffi-ncurses
|
|
52
|
+
version_requirements: &2106 !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - ! '>='
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: !binary |-
|
|
57
|
+
MA==
|
|
58
|
+
none: false
|
|
59
|
+
requirement: *2106
|
|
60
|
+
prerelease: false
|
|
61
|
+
type: :runtime
|
|
62
|
+
- !ruby/object:Gem::Dependency
|
|
63
|
+
name: rspec
|
|
64
|
+
version_requirements: &2122 !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ! '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: !binary |-
|
|
69
|
+
MA==
|
|
70
|
+
none: false
|
|
71
|
+
requirement: *2122
|
|
72
|
+
prerelease: false
|
|
73
|
+
type: :development
|
|
74
|
+
description: ! "This provides a Java agent and command-line utility to enable\n \
|
|
75
|
+
\ JMX in any Java process such that it can be accessed through a firewall,\n \
|
|
76
|
+
\ and a VisualVM launcher aid to connect to that process through ssh."
|
|
77
|
+
email:
|
|
78
|
+
- nick@nicksieger.com
|
|
79
|
+
executables:
|
|
80
|
+
- ey-visualvm
|
|
78
81
|
extensions: []
|
|
79
|
-
|
|
80
82
|
extra_rdoc_files: []
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
- spec/spec_helper.rb
|
|
83
|
+
files:
|
|
84
|
+
- .gitignore
|
|
85
|
+
- ChangeLog
|
|
86
|
+
- Gemfile
|
|
87
|
+
- LICENSE.txt
|
|
88
|
+
- README.md
|
|
89
|
+
- Rakefile
|
|
90
|
+
- Vagrantfile
|
|
91
|
+
- bin/ey-visualvm
|
|
92
|
+
- cookbooks/apt/README.md
|
|
93
|
+
- cookbooks/apt/files/default/apt-cacher
|
|
94
|
+
- cookbooks/apt/files/default/apt-cacher.conf
|
|
95
|
+
- cookbooks/apt/files/default/apt-proxy-v2.conf
|
|
96
|
+
- cookbooks/apt/metadata.json
|
|
97
|
+
- cookbooks/apt/metadata.rb
|
|
98
|
+
- cookbooks/apt/providers/repository.rb
|
|
99
|
+
- cookbooks/apt/recipes/cacher-client.rb
|
|
100
|
+
- cookbooks/apt/recipes/cacher.rb
|
|
101
|
+
- cookbooks/apt/recipes/default.rb
|
|
102
|
+
- cookbooks/apt/resources/repository.rb
|
|
103
|
+
- cookbooks/gems/recipes/default.rb
|
|
104
|
+
- cookbooks/java/README.md
|
|
105
|
+
- cookbooks/java/attributes/default.rb
|
|
106
|
+
- cookbooks/java/files/default/java.seed
|
|
107
|
+
- cookbooks/java/metadata.json
|
|
108
|
+
- cookbooks/java/metadata.rb
|
|
109
|
+
- cookbooks/java/recipes/default.rb
|
|
110
|
+
- cookbooks/java/recipes/openjdk.rb
|
|
111
|
+
- cookbooks/java/recipes/sun.rb
|
|
112
|
+
- cookbooks/jruby/attributes/default.rb
|
|
113
|
+
- cookbooks/jruby/recipes/default.rb
|
|
114
|
+
- cookbooks/server/recipes/default.rb
|
|
115
|
+
- cookbooks/server/templates/default/server.sh.erb
|
|
116
|
+
- cookbooks/vagrant_main/recipes/default.rb
|
|
117
|
+
- engineyard-visualvm-java.gemspec
|
|
118
|
+
- engineyard-visualvm.gemspec
|
|
119
|
+
- engineyard-visualvm.gemspec.in
|
|
120
|
+
- ext/org/jruby/ext/jmx/Agent.java
|
|
121
|
+
- ext/org/jruby/ext/jmx/JavaHome.java
|
|
122
|
+
- ext/org/jruby/ext/jmx/RMIServerSocketFactoryImpl.java
|
|
123
|
+
- lib/engineyard-visualvm.rb
|
|
124
|
+
- lib/engineyard-visualvm/agent.jar
|
|
125
|
+
- lib/engineyard-visualvm/cli.rb
|
|
126
|
+
- lib/engineyard-visualvm/version.rb
|
|
127
|
+
- spec/engineyard-visualvm_spec.rb
|
|
128
|
+
- spec/spec_helper.rb
|
|
128
129
|
homepage: https://github.com/engineyard/engineyard-visualvm
|
|
129
130
|
licenses: []
|
|
130
|
-
|
|
131
|
-
post_install_message:
|
|
131
|
+
post_install_message:
|
|
132
132
|
rdoc_options: []
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
133
|
+
require_paths:
|
|
134
|
+
- lib
|
|
135
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
|
+
requirements:
|
|
137
|
+
- - ! '>='
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: !binary |-
|
|
140
|
+
MA==
|
|
137
141
|
none: false
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
142
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
|
+
requirements:
|
|
144
|
+
- - ! '>='
|
|
145
|
+
- !ruby/object:Gem::Version
|
|
146
|
+
version: !binary |-
|
|
147
|
+
MA==
|
|
143
148
|
none: false
|
|
144
|
-
requirements:
|
|
145
|
-
- - ">="
|
|
146
|
-
- !ruby/object:Gem::Version
|
|
147
|
-
version: "0"
|
|
148
149
|
requirements: []
|
|
149
|
-
|
|
150
150
|
rubyforge_project: jruby-extras
|
|
151
|
-
rubygems_version: 1.8.
|
|
152
|
-
signing_key:
|
|
151
|
+
rubygems_version: 1.8.15
|
|
152
|
+
signing_key:
|
|
153
153
|
specification_version: 3
|
|
154
154
|
summary: Client and server helpers for using JMX and VisualVM with EY Cloud.
|
|
155
|
-
test_files:
|
|
156
|
-
|
|
157
|
-
|
|
155
|
+
test_files:
|
|
156
|
+
- spec/engineyard-visualvm_spec.rb
|
|
157
|
+
- spec/spec_helper.rb
|
|
158
|
+
...
|