fiveruns_tuneup 0.8.17 → 0.8.18

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.8.18. Fix deprecated use of Dependencies.
2
+
1
3
  v0.8.17. Clean build to work around 0.8.16 build snafu (built from a non-clean clone)
2
4
 
3
5
  v0.8.16. JRuby bug fix
@@ -26,4 +28,4 @@ v0.8.4. Fixes for forgery protection breaking the panel, significant work on dis
26
28
 
27
29
  v0.8.3. Beta release.
28
30
 
29
- v0.8.1. First gem package with basic functionality
31
+ v0.8.1. First gem package with basic functionality
data/README.rdoc CHANGED
@@ -22,12 +22,12 @@ For Rails 2.0, install the plugin into +vendor/plugins+:
22
22
  fiveruns_tuneup /path/to/app
23
23
  (or you can clone the GitHub repo into vendor/plugins)
24
24
 
25
- For Rails 2.1, you can use it as a gem dependency instead; in your +environment.rb+:
25
+ For Rails 2.1+, you can use it as a gem dependency instead; in your +environment.rb+:
26
26
 
27
27
  config.gem 'fiveruns_tuneup'
28
28
 
29
- Note: At the current time (as of the 2.1 release) there are issues in Rails that prevent
30
- the plugin running as an unpacked gem (via +rake gems:unpack+).
29
+ *Note*: There is an issue in Rails 2.1 that prevents the plugin running as an unpacked
30
+ gem (via +rake gems:unpack+).
31
31
 
32
32
  == Configuration
33
33
 
@@ -75,7 +75,7 @@ module Fiveruns
75
75
 
76
76
  MAJOR = 0
77
77
  MINOR = 8
78
- TINY = 17
78
+ TINY = 18
79
79
 
80
80
  # The current version as a Version instance
81
81
  CURRENT = new(MAJOR, MINOR, TINY)
@@ -1 +1,2 @@
1
- Dependencies.load_paths.unshift File.dirname(__FILE__)
1
+ deps = defined?(ActiveSupport::Dependencies) ? ActiveSupport::Dependencies : Dependencies
2
+ deps.load_paths.unshift File.dirname(__FILE__)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fiveruns_tuneup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.17
4
+ version: 0.8.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - FiveRuns Development Team
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-10-09 00:00:00 -05:00
12
+ date: 2008-11-14 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -22,51 +22,24 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: "0"
24
24
  version:
25
- - !ruby/object:Gem::Dependency
26
- name: echoe
27
- type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: "0"
34
- version:
35
- description: Instrumentation for the FiveRuns TuneUp product.
25
+ description: Rails plugin that provides the FiveRuns TuneUp Panel (http://tuneup.fiveruns.com)
36
26
  email: dev@fiveruns.com
37
- executables:
38
- - fiveruns_tuneup
27
+ executables: []
28
+
39
29
  extensions: []
40
30
 
41
31
  extra_rdoc_files:
42
- - bin/fiveruns_tuneup
43
- - CHANGELOG
44
- - lib/bumpspark_helper.rb
45
- - lib/fiveruns/tuneup/asset_tags.rb
46
- - lib/fiveruns/tuneup/configuration.rb
47
- - lib/fiveruns/tuneup/custom_methods.rb
48
- - lib/fiveruns/tuneup/environment.rb
49
- - lib/fiveruns/tuneup/instrumentation/action_controller/base.rb
50
- - lib/fiveruns/tuneup/instrumentation/action_view/base.rb
51
- - lib/fiveruns/tuneup/instrumentation/action_view/partial_template.rb
52
- - lib/fiveruns/tuneup/instrumentation/active_record/base.rb
53
- - lib/fiveruns/tuneup/instrumentation/cgi/session.rb
54
- - lib/fiveruns/tuneup/instrumentation/utilities.rb
55
- - lib/fiveruns/tuneup/multipart.rb
56
- - lib/fiveruns/tuneup/routing.rb
57
- - lib/fiveruns/tuneup/runs.rb
58
- - lib/fiveruns/tuneup/schema.rb
59
- - lib/fiveruns/tuneup/step.rb
60
- - lib/fiveruns/tuneup/urls.rb
61
- - lib/fiveruns/tuneup/version.rb
62
- - lib/fiveruns/tuneup.rb
63
- - lib/fiveruns_tuneup.rb
64
- - lib/tuneup_config.rb
65
- - lib/tuneup_controller.rb
66
- - lib/tuneup_helper.rb
67
32
  - README.rdoc
68
- - tasks/assets.rake
33
+ - CHANGELOG
34
+ - CONTRIBUTORS
69
35
  files:
36
+ - README.rdoc
37
+ - CHANGELOG
38
+ - CONTRIBUTORS
39
+ - init.rb
40
+ - install.rb
41
+ - uninstall.rb
42
+ - assets/images
70
43
  - assets/images/arrows.gif
71
44
  - assets/images/edit.png
72
45
  - assets/images/fade.png
@@ -81,24 +54,29 @@ files:
81
54
  - assets/images/signin.gif
82
55
  - assets/images/spinner.gif
83
56
  - assets/images/warning.gif
57
+ - assets/javascripts
84
58
  - assets/javascripts/init.js
85
59
  - assets/javascripts/prototype.js
86
60
  - assets/javascripts/tuneup.js
61
+ - assets/stylesheets
87
62
  - assets/stylesheets/tuneup.css
88
63
  - bin/fiveruns_tuneup
89
- - CHANGELOG
90
- - CONTRIBUTORS
91
- - init.rb
92
- - install.rb
93
64
  - lib/bumpspark_helper.rb
65
+ - lib/fiveruns
66
+ - lib/fiveruns/tuneup
94
67
  - lib/fiveruns/tuneup/asset_tags.rb
95
68
  - lib/fiveruns/tuneup/configuration.rb
96
69
  - lib/fiveruns/tuneup/custom_methods.rb
97
70
  - lib/fiveruns/tuneup/environment.rb
71
+ - lib/fiveruns/tuneup/instrumentation
72
+ - lib/fiveruns/tuneup/instrumentation/action_controller
98
73
  - lib/fiveruns/tuneup/instrumentation/action_controller/base.rb
74
+ - lib/fiveruns/tuneup/instrumentation/action_view
99
75
  - lib/fiveruns/tuneup/instrumentation/action_view/base.rb
100
76
  - lib/fiveruns/tuneup/instrumentation/action_view/partial_template.rb
77
+ - lib/fiveruns/tuneup/instrumentation/active_record
101
78
  - lib/fiveruns/tuneup/instrumentation/active_record/base.rb
79
+ - lib/fiveruns/tuneup/instrumentation/cgi
102
80
  - lib/fiveruns/tuneup/instrumentation/cgi/session.rb
103
81
  - lib/fiveruns/tuneup/instrumentation/utilities.rb
104
82
  - lib/fiveruns/tuneup/multipart.rb
@@ -113,34 +91,26 @@ files:
113
91
  - lib/tuneup_config.rb
114
92
  - lib/tuneup_controller.rb
115
93
  - lib/tuneup_helper.rb
116
- - Manifest
117
94
  - rails/init.rb
118
- - Rakefile
119
- - README.rdoc
120
95
  - tasks/assets.rake
121
96
  - test/test_helper.rb
122
97
  - test/tuneup_test.rb
123
- - uninstall.rb
98
+ - views/tuneup
124
99
  - views/tuneup/_data.html.erb
125
100
  - views/tuneup/_flash.html.erb
126
101
  - views/tuneup/_link.html.erb
127
102
  - views/tuneup/_schema.html.erb
128
103
  - views/tuneup/_sql.html.erb
129
104
  - views/tuneup/_step.html.erb
105
+ - views/tuneup/panel
130
106
  - views/tuneup/panel/_register.html.erb
131
107
  - views/tuneup/panel/_show.html.erb
132
108
  - views/tuneup/sandbox.html.erb
133
- - fiveruns_tuneup.gemspec
134
109
  has_rdoc: true
135
- homepage: http://github.com/fiveruns/fiveruns_tuneup
110
+ homepage: http://tuneup.fiveruns.com/
136
111
  post_install_message:
137
- rdoc_options:
138
- - --line-numbers
139
- - --inline-source
140
- - --title
141
- - Fiveruns_tuneup
142
- - --main
143
- - README.rdoc
112
+ rdoc_options: []
113
+
144
114
  require_paths:
145
115
  - lib
146
116
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -153,15 +123,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
123
  requirements:
154
124
  - - ">="
155
125
  - !ruby/object:Gem::Version
156
- version: "1.2"
126
+ version: "0"
157
127
  version:
158
128
  requirements: []
159
129
 
160
- rubyforge_project: fiveruns
161
- rubygems_version: 1.2.0
130
+ rubyforge_project: fiveruns_tuneup
131
+ rubygems_version: 1.3.0
162
132
  signing_key:
163
133
  specification_version: 2
164
- summary: Instrumentation for the FiveRuns TuneUp product.
165
- test_files:
166
- - test/test_helper.rb
167
- - test/tuneup_test.rb
134
+ summary: Rails plugin that provides the FiveRuns TuneUp Panel (http://tuneup.fiveruns.com)
135
+ test_files: []
136
+
data/Manifest DELETED
@@ -1,63 +0,0 @@
1
- assets/images/arrows.gif
2
- assets/images/edit.png
3
- assets/images/fade.png
4
- assets/images/fade_down.png
5
- assets/images/head.gif
6
- assets/images/logo.gif
7
- assets/images/logo_clear.png
8
- assets/images/magnify.png
9
- assets/images/pip.gif
10
- assets/images/pointer.gif
11
- assets/images/schema.png
12
- assets/images/signin.gif
13
- assets/images/spinner.gif
14
- assets/images/warning.gif
15
- assets/javascripts/init.js
16
- assets/javascripts/prototype.js
17
- assets/javascripts/tuneup.js
18
- assets/stylesheets/tuneup.css
19
- bin/fiveruns_tuneup
20
- CHANGELOG
21
- CONTRIBUTORS
22
- init.rb
23
- install.rb
24
- lib/bumpspark_helper.rb
25
- lib/fiveruns/tuneup/asset_tags.rb
26
- lib/fiveruns/tuneup/configuration.rb
27
- lib/fiveruns/tuneup/custom_methods.rb
28
- lib/fiveruns/tuneup/environment.rb
29
- lib/fiveruns/tuneup/instrumentation/action_controller/base.rb
30
- lib/fiveruns/tuneup/instrumentation/action_view/base.rb
31
- lib/fiveruns/tuneup/instrumentation/action_view/partial_template.rb
32
- lib/fiveruns/tuneup/instrumentation/active_record/base.rb
33
- lib/fiveruns/tuneup/instrumentation/cgi/session.rb
34
- lib/fiveruns/tuneup/instrumentation/utilities.rb
35
- lib/fiveruns/tuneup/multipart.rb
36
- lib/fiveruns/tuneup/routing.rb
37
- lib/fiveruns/tuneup/runs.rb
38
- lib/fiveruns/tuneup/schema.rb
39
- lib/fiveruns/tuneup/step.rb
40
- lib/fiveruns/tuneup/urls.rb
41
- lib/fiveruns/tuneup/version.rb
42
- lib/fiveruns/tuneup.rb
43
- lib/fiveruns_tuneup.rb
44
- lib/tuneup_config.rb
45
- lib/tuneup_controller.rb
46
- lib/tuneup_helper.rb
47
- Manifest
48
- rails/init.rb
49
- Rakefile
50
- README.rdoc
51
- tasks/assets.rake
52
- test/test_helper.rb
53
- test/tuneup_test.rb
54
- uninstall.rb
55
- views/tuneup/_data.html.erb
56
- views/tuneup/_flash.html.erb
57
- views/tuneup/_link.html.erb
58
- views/tuneup/_schema.html.erb
59
- views/tuneup/_sql.html.erb
60
- views/tuneup/_step.html.erb
61
- views/tuneup/panel/_register.html.erb
62
- views/tuneup/panel/_show.html.erb
63
- views/tuneup/sandbox.html.erb
data/Rakefile DELETED
@@ -1,15 +0,0 @@
1
- require 'rubygems'
2
- require 'echoe'
3
-
4
- require File.dirname(__FILE__) << "/lib/fiveruns/tuneup/version"
5
-
6
- Echoe.new 'fiveruns_tuneup' do |p|
7
- p.version = Fiveruns::Tuneup::Version::STRING
8
- p.author = "FiveRuns Development Team"
9
- p.email = 'dev@fiveruns.com'
10
- p.project = 'fiveruns'
11
- p.summary = "Instrumentation for the FiveRuns TuneUp product."
12
- p.url = "http://github.com/fiveruns/fiveruns_tuneup"
13
- p.dependencies = %w(activesupport)
14
- p.include_rakefile = true
15
- end
@@ -1,169 +0,0 @@
1
-
2
- # Gem::Specification for Fiveruns_tuneup-0.8.17
3
- # Originally generated by Echoe
4
-
5
- --- !ruby/object:Gem::Specification
6
- name: fiveruns_tuneup
7
- version: !ruby/object:Gem::Version
8
- version: 0.8.17
9
- platform: ruby
10
- authors:
11
- - FiveRuns Development Team
12
- autorequire:
13
- bindir: bin
14
-
15
- date: 2008-10-09 00:00:00 -05:00
16
- default_executable:
17
- dependencies:
18
- - !ruby/object:Gem::Dependency
19
- name: activesupport
20
- type: :runtime
21
- version_requirement:
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: "0"
27
- version:
28
- - !ruby/object:Gem::Dependency
29
- name: echoe
30
- type: :development
31
- version_requirement:
32
- version_requirements: !ruby/object:Gem::Requirement
33
- requirements:
34
- - - ">="
35
- - !ruby/object:Gem::Version
36
- version: "0"
37
- version:
38
- description: Instrumentation for the FiveRuns TuneUp product.
39
- email: dev@fiveruns.com
40
- executables:
41
- - fiveruns_tuneup
42
- extensions: []
43
-
44
- extra_rdoc_files:
45
- - bin/fiveruns_tuneup
46
- - CHANGELOG
47
- - lib/bumpspark_helper.rb
48
- - lib/fiveruns/tuneup/asset_tags.rb
49
- - lib/fiveruns/tuneup/configuration.rb
50
- - lib/fiveruns/tuneup/custom_methods.rb
51
- - lib/fiveruns/tuneup/environment.rb
52
- - lib/fiveruns/tuneup/instrumentation/action_controller/base.rb
53
- - lib/fiveruns/tuneup/instrumentation/action_view/base.rb
54
- - lib/fiveruns/tuneup/instrumentation/action_view/partial_template.rb
55
- - lib/fiveruns/tuneup/instrumentation/active_record/base.rb
56
- - lib/fiveruns/tuneup/instrumentation/cgi/session.rb
57
- - lib/fiveruns/tuneup/instrumentation/utilities.rb
58
- - lib/fiveruns/tuneup/multipart.rb
59
- - lib/fiveruns/tuneup/routing.rb
60
- - lib/fiveruns/tuneup/runs.rb
61
- - lib/fiveruns/tuneup/schema.rb
62
- - lib/fiveruns/tuneup/step.rb
63
- - lib/fiveruns/tuneup/urls.rb
64
- - lib/fiveruns/tuneup/version.rb
65
- - lib/fiveruns/tuneup.rb
66
- - lib/fiveruns_tuneup.rb
67
- - lib/tuneup_config.rb
68
- - lib/tuneup_controller.rb
69
- - lib/tuneup_helper.rb
70
- - README.rdoc
71
- - tasks/assets.rake
72
- files:
73
- - assets/images/arrows.gif
74
- - assets/images/edit.png
75
- - assets/images/fade.png
76
- - assets/images/fade_down.png
77
- - assets/images/head.gif
78
- - assets/images/logo.gif
79
- - assets/images/logo_clear.png
80
- - assets/images/magnify.png
81
- - assets/images/pip.gif
82
- - assets/images/pointer.gif
83
- - assets/images/schema.png
84
- - assets/images/signin.gif
85
- - assets/images/spinner.gif
86
- - assets/images/warning.gif
87
- - assets/javascripts/init.js
88
- - assets/javascripts/prototype.js
89
- - assets/javascripts/tuneup.js
90
- - assets/stylesheets/tuneup.css
91
- - bin/fiveruns_tuneup
92
- - CHANGELOG
93
- - CONTRIBUTORS
94
- - init.rb
95
- - install.rb
96
- - lib/bumpspark_helper.rb
97
- - lib/fiveruns/tuneup/asset_tags.rb
98
- - lib/fiveruns/tuneup/configuration.rb
99
- - lib/fiveruns/tuneup/custom_methods.rb
100
- - lib/fiveruns/tuneup/environment.rb
101
- - lib/fiveruns/tuneup/instrumentation/action_controller/base.rb
102
- - lib/fiveruns/tuneup/instrumentation/action_view/base.rb
103
- - lib/fiveruns/tuneup/instrumentation/action_view/partial_template.rb
104
- - lib/fiveruns/tuneup/instrumentation/active_record/base.rb
105
- - lib/fiveruns/tuneup/instrumentation/cgi/session.rb
106
- - lib/fiveruns/tuneup/instrumentation/utilities.rb
107
- - lib/fiveruns/tuneup/multipart.rb
108
- - lib/fiveruns/tuneup/routing.rb
109
- - lib/fiveruns/tuneup/runs.rb
110
- - lib/fiveruns/tuneup/schema.rb
111
- - lib/fiveruns/tuneup/step.rb
112
- - lib/fiveruns/tuneup/urls.rb
113
- - lib/fiveruns/tuneup/version.rb
114
- - lib/fiveruns/tuneup.rb
115
- - lib/fiveruns_tuneup.rb
116
- - lib/tuneup_config.rb
117
- - lib/tuneup_controller.rb
118
- - lib/tuneup_helper.rb
119
- - Manifest
120
- - rails/init.rb
121
- - Rakefile
122
- - README.rdoc
123
- - tasks/assets.rake
124
- - test/test_helper.rb
125
- - test/tuneup_test.rb
126
- - uninstall.rb
127
- - views/tuneup/_data.html.erb
128
- - views/tuneup/_flash.html.erb
129
- - views/tuneup/_link.html.erb
130
- - views/tuneup/_schema.html.erb
131
- - views/tuneup/_sql.html.erb
132
- - views/tuneup/_step.html.erb
133
- - views/tuneup/panel/_register.html.erb
134
- - views/tuneup/panel/_show.html.erb
135
- - views/tuneup/sandbox.html.erb
136
- - fiveruns_tuneup.gemspec
137
- has_rdoc: true
138
- homepage: http://github.com/fiveruns/fiveruns_tuneup
139
- post_install_message:
140
- rdoc_options:
141
- - --line-numbers
142
- - --inline-source
143
- - --title
144
- - Fiveruns_tuneup
145
- - --main
146
- - README.rdoc
147
- require_paths:
148
- - lib
149
- required_ruby_version: !ruby/object:Gem::Requirement
150
- requirements:
151
- - - ">="
152
- - !ruby/object:Gem::Version
153
- version: "0"
154
- version:
155
- required_rubygems_version: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - ">="
158
- - !ruby/object:Gem::Version
159
- version: "1.2"
160
- version:
161
- requirements: []
162
-
163
- rubyforge_project: fiveruns
164
- rubygems_version: 1.2.0
165
- specification_version: 2
166
- summary: Instrumentation for the FiveRuns TuneUp product.
167
- test_files:
168
- - test/test_helper.rb
169
- - test/tuneup_test.rb