chrome_ssb 0.1.1 → 0.1.2
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 +4 -4
- data/lib/chrome_ssb/version.rb +1 -1
- data/lib/chrome_ssb.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f04ad9693756566b7fc3dc4212b998fef0f592b1
|
|
4
|
+
data.tar.gz: c162c7326fc94a631d867589f3813c6b455ab337
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6d137d9550aea520e51719e3456c82a6aa1b6920ed0b070c3718e3cdfe5a8d122b3aa95de9d8bd71f0dd78b371f56d38f0a15b197229759f9ada14135eba283
|
|
7
|
+
data.tar.gz: 9138e5e7a1ffb6cbe092845112873c9f3d9f99a896979172b5d348f35c525c09185c67c27522a169b8f9a14fb187f5cbd06cea287b44fb8e9776833bd5e1bab7
|
data/lib/chrome_ssb/version.rb
CHANGED
data/lib/chrome_ssb.rb
CHANGED
|
@@ -4,12 +4,13 @@ class ChromeSSB
|
|
|
4
4
|
require 'fileutils'
|
|
5
5
|
require 'tempfile'
|
|
6
6
|
|
|
7
|
-
@params = %i(name location icon path chrome_path overwrite)
|
|
8
|
-
@compatible = !(/darwin/ =~ RUBY_PLATFORM).nil?
|
|
9
7
|
|
|
8
|
+
@params = %i(name location icon path chrome_path overwrite)
|
|
10
9
|
attr_accessor *@params
|
|
11
10
|
|
|
12
11
|
def initialize(args={})
|
|
12
|
+
@compatible = !(/darwin/ =~ RUBY_PLATFORM).nil?
|
|
13
|
+
|
|
13
14
|
## Require Mac OS X for SSB .app structure
|
|
14
15
|
raise '`chrome_ssb` is only compatible with Mac OS X' unless @compatible
|
|
15
16
|
|