fiveruns_tuneup_merb 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG ADDED
@@ -0,0 +1,3 @@
1
+ v0.5.2. Fix for Safari Rendering.
2
+
3
+ v0.5.1. Initial Release.
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ AUTHOR = "FiveRuns Development Team"
8
8
  EMAIL = "dev@fiveruns.com"
9
9
  HOMEPAGE = "http://tuneup.fiveruns.com/"
10
10
  SUMMARY = "Merb Slice that provides the FiveRuns TuneUp Panel (http://tuneup.fiveruns.com)"
11
- GEM_VERSION = "0.5.1"
11
+ GEM_VERSION = "0.5.2"
12
12
 
13
13
  spec = Gem::Specification.new do |s|
14
14
  s.rubyforge_project = 'fiveruns_tuneup_merb'
@@ -16,7 +16,7 @@ spec = Gem::Specification.new do |s|
16
16
  s.version = GEM_VERSION
17
17
  s.platform = Gem::Platform::RUBY
18
18
  s.has_rdoc = true
19
- s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
19
+ s.extra_rdoc_files = ["README", "LICENSE", 'TODO', "CHANGELOG"]
20
20
  s.summary = SUMMARY
21
21
  s.description = s.summary
22
22
  s.author = AUTHOR
@@ -25,7 +25,7 @@ spec = Gem::Specification.new do |s|
25
25
  s.add_dependency('fiveruns_tuneup_core')
26
26
  s.add_dependency('merb-slices', '>= 0.9.5')
27
27
  s.require_path = 'lib'
28
- s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec,app,public,stubs}/**/*")
28
+ s.files = %w(LICENSE README Rakefile TODO CHANGELOG) + Dir.glob("{lib,spec,app,public,stubs}/**/*")
29
29
  end
30
30
 
31
31
  Rake::GemPackageTask.new(spec) do |pkg|
@@ -33,7 +33,7 @@ if defined?(Merb::Plugins)
33
33
 
34
34
  # Slice metadata
35
35
  self.description = "Provides a FiveRuns TuneUp panel (http://tuneup.fiveruns.com)"
36
- self.version = "0.0.1"
36
+ self.version = "0.5.2"
37
37
  self.author = "FiveRuns Development Team <dev@fiveruns.com>"
38
38
 
39
39
  # Stub classes loaded hook - runs before LoadClasses BootLoader
@@ -8,7 +8,7 @@ var TuneUp = {
8
8
  },
9
9
  adjustFixedElements: function(e) {
10
10
  page.find('*').each(function() {
11
- if($(this).css({position: 'fixed'})) {
11
+ if($(this).css("position") == "fixed") {
12
12
  TuneUp.adjustElement(e);
13
13
  }
14
14
  });
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fiveruns_tuneup_merb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
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-11 00:00:00 -07:00
12
+ date: 2008-10-14 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -42,11 +42,13 @@ extra_rdoc_files:
42
42
  - README
43
43
  - LICENSE
44
44
  - TODO
45
+ - CHANGELOG
45
46
  files:
46
47
  - LICENSE
47
48
  - README
48
49
  - Rakefile
49
50
  - TODO
51
+ - CHANGELOG
50
52
  - lib/fiveruns_tuneup_merb
51
53
  - lib/fiveruns_tuneup_merb/api_key.rb
52
54
  - lib/fiveruns_tuneup_merb/instrumentation.rb
@@ -110,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
112
  requirements: []
111
113
 
112
114
  rubyforge_project: fiveruns_tuneup_merb
113
- rubygems_version: 1.3.0
115
+ rubygems_version: 1.2.0
114
116
  signing_key:
115
117
  specification_version: 2
116
118
  summary: Merb Slice that provides the FiveRuns TuneUp Panel (http://tuneup.fiveruns.com)