specs 0.12 → 0.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a2de1c8d7d88a6e97a1552406fe952ee465c24ae
4
- data.tar.gz: 7352ce265a2f793914c4856d2eb9fda7f443a3e3
3
+ metadata.gz: 97af9e6f273d17ba674f495cf26826a6e6666bd5
4
+ data.tar.gz: 78022e20aa45e310303dc4bac5f25bdaac4651e7
5
5
  SHA512:
6
- metadata.gz: 4136b8cb1f7ff330da077fc50252baebf6c666758d94935329f00ff82e8c7ad65fcc99c38dffca895d8df84eb341f7b4c16739765814199c9fb1b482e8cb1be9
7
- data.tar.gz: 2b453a4e2040ede857f1d6900abcb507c6473464fed836b62621b3d0df0b7fcfce04bbae10bfb6824286f240e7b42f25e14389e9bb4a0965f7f5716e6c94f965
6
+ metadata.gz: 6078555a9c5139398d5060985dc08aaa8f999d203635f8d3b53792436d450698a92f4daefc6166451f4748da8293091cbddcb023e99f25691b271dd45867fce9
7
+ data.tar.gz: df493e3edb6595dcd3fdee8a2d680aaf62546e59ee1e3259eadc89118f7600cddb85f1f2f4cc612e9d432444884ad299b35dcae5a1c12d68b2a4d27916132c7a
data/LICENSE.md CHANGED
@@ -20,4 +20,4 @@ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20
20
  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
21
21
  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
22
22
  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
23
- ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,5 @@
1
+ module Recipe
2
+ def self.ack
3
+ 'ack --version'
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ module Recipe
2
+ def self.iojs_v
3
+ 'iojs --version'
4
+ end
5
+
6
+ def self.iojs
7
+ [npm, iojs_v]
8
+ end
9
+ end
@@ -1,19 +1,9 @@
1
1
  module Recipe
2
- module Package
3
- def self.npm(package)
4
- "npm list #{package}"
5
- end
6
- end
7
-
8
- def self.npm_tool
9
- 'npm --version'
10
- end
11
-
12
- def self.js
2
+ def self.nodejs
13
3
  'node --version'
14
4
  end
15
5
 
16
6
  def self.node
17
- [npm_tool, js]
7
+ [npm, nodejs]
18
8
  end
19
9
  end
@@ -0,0 +1,11 @@
1
+ module Recipe
2
+ module Package
3
+ def self.npm(package)
4
+ "npm list #{package}"
5
+ end
6
+ end
7
+
8
+ def self.npm
9
+ 'npm --version'
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ module Recipe
2
+ def self.openssl
3
+ 'openssl version'
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ module Recipe
2
+ def self.safari
3
+ if Os.mac?
4
+ 'system_profiler SPApplicationsDataType | grep \'Safari:\' -A 2'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Recipe
2
+ def self.terminal
3
+ if Os.mac?
4
+ 'system_profiler -detailLevel full 2>&1 | grep Terminal -A 5 | grep Version -m 1'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module Recipe
2
+ def self.thunderbolt
3
+ if Os.mac?
4
+ 'system_profiler | grep \'Thunderbolt Version\' | head -n 1'
5
+ end
6
+ end
7
+ end
@@ -2,5 +2,5 @@
2
2
  # Specs
3
3
  #
4
4
  module Specs
5
- VERSION = '0.12'
5
+ VERSION = '0.13'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: specs
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.12'
4
+ version: '0.13'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Pennebaker
@@ -248,6 +248,20 @@ dependencies:
248
248
  - - ~>
249
249
  - !ruby/object:Gem::Version
250
250
  version: '0.2'
251
+ - !ruby/object:Gem::Dependency
252
+ name: lili
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - ~>
256
+ - !ruby/object:Gem::Version
257
+ version: '0.2'
258
+ type: :development
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ~>
263
+ - !ruby/object:Gem::Version
264
+ version: '0.2'
251
265
  description: See README.md for example usage
252
266
  email: andrew.pennebaker@gmail.com
253
267
  executables:
@@ -257,6 +271,7 @@ extra_rdoc_files: []
257
271
  files:
258
272
  - LICENSE.md
259
273
  - bin/specs
274
+ - lib/aspects/ack.rb
260
275
  - lib/aspects/apt.rb
261
276
  - lib/aspects/as.rb
262
277
  - lib/aspects/bios.rb
@@ -278,6 +293,7 @@ files:
278
293
  - lib/aspects/hd.rb
279
294
  - lib/aspects/ie.rb
280
295
  - lib/aspects/inkscape.rb
296
+ - lib/aspects/iojs.rb
281
297
  - lib/aspects/java.rb
282
298
  - lib/aspects/lacheck.rb
283
299
  - lib/aspects/latex.rb
@@ -286,7 +302,9 @@ files:
286
302
  - lib/aspects/lua.rb
287
303
  - lib/aspects/net.rb
288
304
  - lib/aspects/node.rb
305
+ - lib/aspects/npm.rb
289
306
  - lib/aspects/ocaml.rb
307
+ - lib/aspects/openssl.rb
290
308
  - lib/aspects/opera.rb
291
309
  - lib/aspects/oz.rb
292
310
  - lib/aspects/perl.rb
@@ -298,13 +316,16 @@ files:
298
316
  - lib/aspects/ram.rb
299
317
  - lib/aspects/redis.rb
300
318
  - lib/aspects/ruby.rb
319
+ - lib/aspects/safari.rb
301
320
  - lib/aspects/scala.rb
302
321
  - lib/aspects/shell.rb
303
322
  - lib/aspects/splint.rb
304
323
  - lib/aspects/ssh.rb
305
324
  - lib/aspects/ssl.rb
306
325
  - lib/aspects/tap.rb
326
+ - lib/aspects/terminal.rb
307
327
  - lib/aspects/thrift.rb
328
+ - lib/aspects/thunderbolt.rb
308
329
  - lib/aspects/virtualbox.rb
309
330
  - lib/aspects/xcode.rb
310
331
  - lib/specs.rb
@@ -321,7 +342,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
321
342
  requirements:
322
343
  - - '>='
323
344
  - !ruby/object:Gem::Version
324
- version: '0'
345
+ version: '1.9'
325
346
  required_rubygems_version: !ruby/object:Gem::Requirement
326
347
  requirements:
327
348
  - - '>='
@@ -329,7 +350,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
329
350
  version: '0'
330
351
  requirements: []
331
352
  rubyforge_project:
332
- rubygems_version: 2.2.2
353
+ rubygems_version: 2.4.6
333
354
  signing_key:
334
355
  specification_version: 4
335
356
  summary: Software version information at your fingertips