capybara-firebug 1.2.3 → 1.3.0

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/README.md CHANGED
@@ -18,11 +18,12 @@ Gemfile: `gem 'ruby-debug'` for 1.8, `gem 'ruby-debug19'` for 1.9.)
18
18
 
19
19
  ## Firebug Versions
20
20
 
21
- By default, this gem uses Firebug 1.10.2, which is compatible with Firefox 13-16.
21
+ By default, this gem uses Firebug 1.11.0, which is compatible with Firefox 17-20.
22
22
 
23
- If you want to use Firebug 1.7.3 (compatible with Firefox 3.6, 4, and 5) or 1.9.1
24
- (compatible with Firefox 6-13), you need to explicitly specify the firebug_version
25
- setting in your `capybara.rb` support file:
23
+ If you want to use Firebug 1.7.3 (compatible with Firefox 3.6, 4, and 5), 1.9.2
24
+ (compatible with Firefox 6-13), or 1.10.6 (compatible with Firefox 13-18), you
25
+ need to explicitly specify the firebug_version setting in your `capybara.rb`
26
+ support file:
26
27
 
27
28
  # located in features/support/capybara.rb or similar
28
29
  require 'capybara/firebug'
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "capybara-firebug"
5
- s.version = "1.2.3"
5
+ s.version = "1.3.0"
6
6
  s.platform = Gem::Platform::RUBY
7
7
  s.authors = ["John Firebaugh"]
8
8
  s.email = ["john.firebaugh@gmail.com"]
@@ -2,7 +2,7 @@ require 'selenium/webdriver'
2
2
 
3
3
  class Selenium::WebDriver::Firefox::Profile
4
4
  def self.firebug_version
5
- @firebug_version ||= '1.10.3'
5
+ @firebug_version ||= '1.11.0'
6
6
  end
7
7
 
8
8
  def self.firebug_version=(version)
@@ -4,8 +4,8 @@ describe Selenium::WebDriver::Firefox::Profile do
4
4
  before { described_class.firebug_version = nil } # Reset
5
5
 
6
6
  describe ".firebug_version" do
7
- it "defaults to 1.10.3" do
8
- described_class.firebug_version.should == "1.10.3"
7
+ it "defaults to 1.11.0" do
8
+ described_class.firebug_version.should == "1.11.0"
9
9
  end
10
10
 
11
11
  it "can be explicitly set" do
@@ -16,7 +16,7 @@ describe Selenium::WebDriver::Firefox::Profile do
16
16
 
17
17
  describe "#enable_firebug" do
18
18
  it "adds the Firebug extension" do
19
- subject.should_receive(:add_extension).with(/firebug-1\.10\.3\.xpi$/)
19
+ subject.should_receive(:add_extension).with(/firebug-1\.11\.0\.xpi$/)
20
20
  subject.enable_firebug
21
21
  end
22
22
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capybara-firebug
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.3.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-06 00:00:00.000000000 Z
12
+ date: 2012-12-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capybara
@@ -84,9 +84,10 @@ files:
84
84
  - features/step_definitions/web_steps.rb
85
85
  - features/support/env.rb
86
86
  - lib/capybara-firebug.rb
87
- - lib/capybara/firebug-1.10.3.xpi
87
+ - lib/capybara/firebug-1.10.6.xpi
88
+ - lib/capybara/firebug-1.11.0.xpi
88
89
  - lib/capybara/firebug-1.7.3.xpi
89
- - lib/capybara/firebug-1.9.1.xpi
90
+ - lib/capybara/firebug-1.9.2.xpi
90
91
  - lib/capybara/firebug-license.txt
91
92
  - lib/capybara/firebug.rb
92
93
  - spec/enable_firebug_spec.rb
@@ -104,18 +105,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
104
105
  - - ! '>='
105
106
  - !ruby/object:Gem::Version
106
107
  version: '0'
107
- segments:
108
- - 0
109
- hash: 2250407189978263472
110
108
  required_rubygems_version: !ruby/object:Gem::Requirement
111
109
  none: false
112
110
  requirements:
113
111
  - - ! '>='
114
112
  - !ruby/object:Gem::Version
115
113
  version: '0'
116
- segments:
117
- - 0
118
- hash: 2250407189978263472
119
114
  requirements: []
120
115
  rubyforge_project: capybara-firebug
121
116
  rubygems_version: 1.8.24