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 +8 -8
- data/Gemfile.lock +1 -1
- data/bin/geordi +1 -0
- data/features/launchy_browser.feature +16 -0
- data/lib/geordi/firefox_for_selenium.rb +1 -1
- data/lib/geordi/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzdlN2I1YzY5NmY0YTQwYWZjMGYzZGVjMzk0N2RmYTNhMGJmMzdhMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OTk3MGFkYTI5NDhmYjQwNWQ4ODEwMDE3YTVlNDM4OTc4YTllYjlhMg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzgzM2FiODBjZjgzMjQxNzFhNzAyMTY3ODgzMzM3Y2RiMjJlNmFmNjBjMDNl
|
10
|
+
M2NhZTRkZjI5YjBhZmIxYzQ0ZDdiOTQ3OTQyMjNhYzhhOTVkZDhjM2NmNTY3
|
11
|
+
NGQwZTdjMmE5MWMzMGM1MTM1Y2IyNThlNjQ5Njc5OTMwZjNiOGY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTJhOWFkMmYxZTRmNzczNWNjZjExMTY3ZjBhYTllNGQ3ZDNmMWI2ZGVlYTky
|
14
|
+
ZjQzY2UwY2Y1NzMxOGUyN2NjNzIyMmUwZjBjMDA5NzAzYzBjNjQyYTdjM2Qw
|
15
|
+
NDhiYTYyMjgxMDBkYzViMDk2MDA2ZmYyMmZkOWUzNzE0ZTYyNTQ=
|
data/Gemfile.lock
CHANGED
data/bin/geordi
CHANGED
@@ -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')"
|
data/lib/geordi/version.rb
CHANGED
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.
|
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-
|
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
|