geordi 1.3.0 → 1.3.1

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTg1YjZmMGRjNzQ1YTY4ZTJmNzE2ZmE4Yzc4YjQzOGU3YThlNTY0ZQ==
4
+ YzdlN2I1YzY5NmY0YTQwYWZjMGYzZGVjMzk0N2RmYTNhMGJmMzdhMw==
5
5
  data.tar.gz: !binary |-
6
- YTVjMTg5NTA0YmU2NDQzZGU5ZWY1Yjc1NjNmODkyMmVhOGYwNGFiMA==
6
+ OTk3MGFkYTI5NDhmYjQwNWQ4ODEwMDE3YTVlNDM4OTc4YTllYjlhMg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YWI3YjAzMDE3ZWVmMmFjNGU3ZWM0NTI1MjljZWRiNzE0N2QwYTU1MTlkMjBh
10
- ZWEzMzFiMGEyODY1OWNlMmE3ZTBjMTc0MTMwZDU0MDJiYmU2M2IyNWY1NDNk
11
- ODMyZGJkYjdhNTNjM2NhMDEwZjVmYjYxYjBkNzhlZmRjZjg5MzM=
9
+ NzgzM2FiODBjZjgzMjQxNzFhNzAyMTY3ODgzMzM3Y2RiMjJlNmFmNjBjMDNl
10
+ M2NhZTRkZjI5YjBhZmIxYzQ0ZDdiOTQ3OTQyMjNhYzhhOTVkZDhjM2NmNTY3
11
+ NGQwZTdjMmE5MWMzMGM1MTM1Y2IyNThlNjQ5Njc5OTMwZjNiOGY=
12
12
  data.tar.gz: !binary |-
13
- ODhkNTY5ZmNhOTdkMmM3OWRlNzEzMGJkZjBlYWRhMTQxNjMzZGIyNDIzZmVi
14
- ZjU0MTFmNDBjYmU4MjYyMzIwMzNhZmFjMTZhYTY3ZGRiYjJkOWE5MjZkMzgz
15
- YmQ0MjgwMGFkMjg3MjdiMjIwNWYxOGVhMjc2N2UzZjdiMzU5YzA=
13
+ MTJhOWFkMmYxZTRmNzczNWNjZjExMTY3ZjBhYTllNGQ3ZDNmMWI2ZGVlYTky
14
+ ZjQzY2UwY2Y1NzMxOGUyN2NjNzIyMmUwZjBjMDA5NzAzYzBjNjQyYTdjM2Qw
15
+ NDhiYTYyMjgxMDBkYzViMDk2MDA2ZmYyMmZkOWUzNzE0ZTYyNTQ=
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- geordi (1.3.0)
4
+ geordi (1.3.1)
5
5
  thor (>= 0.18.0)
6
6
 
7
7
  GEM
data/bin/geordi CHANGED
@@ -3,6 +3,7 @@
3
3
  require 'geordi/util'
4
4
 
5
5
  Geordi::Util.installing_missing_gems do
6
+ require 'rubygems' unless defined?(Gem)
6
7
  require 'geordi'
7
8
  require 'thor'
8
9
 
@@ -0,0 +1,16 @@
1
+ Feature: The `launchy_browser` binary
2
+
3
+ Scenario: Opening a URL
4
+ # Add path to Ruby's load path
5
+ Given I set the environment variable "RUBYLIB" to "test_bin"
6
+ And a file named "test_bin/launchy.rb" with:
7
+ """
8
+ class Launchy
9
+ def self.open(url)
10
+ puts "[fake] Launchy.open('#{ url }')"
11
+ end
12
+ end
13
+ """
14
+
15
+ When I run `launchy_browser http://www.example.com`
16
+ Then the output should contain "[fake] Launchy.open('http://www.example.com')"
@@ -1,6 +1,6 @@
1
1
  require 'pathname'
2
2
  require 'tempfile'
3
- require 'geordi/interaction'
3
+ require File.expand_path('../interaction', __FILE__)
4
4
 
5
5
  module Geordi
6
6
  module FirefoxForSelenium
@@ -1,3 +1,3 @@
1
1
  module Geordi
2
- VERSION = '1.3.0'
2
+ VERSION = '1.3.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geordi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-02 00:00:00.000000000 Z
11
+ date: 2016-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -79,6 +79,7 @@ files:
79
79
  - features/cucumber.feature
80
80
  - features/dump.feature
81
81
  - features/firefox.feature
82
+ - features/launchy_browser.feature
82
83
  - features/shell.feature
83
84
  - features/support/env.rb
84
85
  - geordi.gemspec