hwid 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- metadata +1 -5
- data/Gemfile +0 -6
- data/Gemfile.lock +0 -32
- data/README.md +0 -19
- data/hwid.gemspec +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e14d5b2a5b55c8620bb2794d533748f233327f0d011a96b91fc0f96efb57c9b
|
4
|
+
data.tar.gz: d602cac4bf9e8109142f78c617a7e3089453f9e686bfc45376733d393b2e25a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b1e76c3c7b0233c815afa593732fb2fe4c6a422d3e4e879e6d8a712a8ddba61cb8693c9f85ea80a872d09d5db5ddca35928a762858c34033d0fb49b51ade482
|
7
|
+
data.tar.gz: 064d2fc7614ba90648a0840be814d04580e07943bcf2897c30388ad56f0aab38c65180edc89078766dee8337b6dccda0db19dfd0b2be684971e9a9f105a358e6
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hwid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Sproule
|
@@ -17,11 +17,7 @@ executables:
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
-
- Gemfile
|
21
|
-
- Gemfile.lock
|
22
|
-
- README.md
|
23
20
|
- bin/hwid.rb
|
24
|
-
- hwid.gemspec
|
25
21
|
- lib/hwid.rb
|
26
22
|
- lib/hwid/base.rb
|
27
23
|
- test/coverage/assets/0.7.1/application.css
|
data/Gemfile
DELETED
data/Gemfile.lock
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
hwid (0.3.2)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
codeclimate-test-reporter (1.0.9)
|
10
|
-
simplecov (<= 0.13)
|
11
|
-
docile (1.1.5)
|
12
|
-
json (2.3.1)
|
13
|
-
minitest (5.14.1)
|
14
|
-
simplecov (0.13.0)
|
15
|
-
docile (~> 1.1.0)
|
16
|
-
json (>= 1.8, < 3)
|
17
|
-
simplecov-html (~> 0.10.0)
|
18
|
-
simplecov-html (0.10.2)
|
19
|
-
|
20
|
-
PLATFORMS
|
21
|
-
ruby
|
22
|
-
|
23
|
-
DEPENDENCIES
|
24
|
-
codeclimate-test-reporter
|
25
|
-
hwid!
|
26
|
-
minitest
|
27
|
-
|
28
|
-
RUBY VERSION
|
29
|
-
ruby 2.6.6p146
|
30
|
-
|
31
|
-
BUNDLED WITH
|
32
|
-
1.17.3
|
data/README.md
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
[![Build Status](https://travis-ci.org/semdinsp/hwid.svg?branch=master)](https://travis-ci.org/semdinsp/hwid)[![Code Climate](https://codeclimate.com/github/semdinsp/hwid/badges/gpa.svg)](https://codeclimate.com/github/semdinsp/hwid)
|
2
|
-
[![Gem Version](https://badge.fury.io/rb/hwid.png)](http://badge.fury.io/rb/hwid)
|
3
|
-
|
4
|
-
hwid gem
|
5
|
-
============
|
6
|
-
|
7
|
-
return the hardware id of the system the gem is running on.
|
8
|
-
|
9
|
-
Simple hwid id
|
10
|
-
=====================
|
11
|
-
THis is not secure but gives a simple way to identify the hardware from a particular client application.
|
12
|
-
|
13
|
-
It is a bit slow so perhaps only call it upon startup
|
14
|
-
|
15
|
-
Usage
|
16
|
-
=======
|
17
|
-
|
18
|
-
Hwid.systemid
|
19
|
-
|
data/hwid.gemspec
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
Gem::Specification.new do |s|
|
2
|
-
s.name = "hwid"
|
3
|
-
s.version = "0.3.4"
|
4
|
-
s.author = "Scott Sproule"
|
5
|
-
s.email = "scott.sproule@ficonab.com"
|
6
|
-
s.homepage = "http://github.com/semdinsp/hwid"
|
7
|
-
s.summary = "Hardware id for mac and rasp pi (not secure)"
|
8
|
-
s.description = "Get a rough hardware id of the system that the gem is running on"
|
9
|
-
s.executables = ['hwid.rb'] #should be "name.rb"
|
10
|
-
s.files = Dir["{lib,test}/**/*"] +Dir["bin/*.rb"] + Dir["[A-Z]*"] # + ["init.rb"]
|
11
|
-
s.require_path = "lib"
|
12
|
-
s.license = 'MIT'
|
13
|
-
s.required_rubygems_version = ">= 1.3.4"
|
14
|
-
end
|