usblamp 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e01c5f2833190f29ad21b008c70e22cee1d7bdfe
4
+ data.tar.gz: 71142e9c9ca239148d91c0aa3db92b181c4c90eb
5
+ SHA512:
6
+ metadata.gz: d12919ab3f2fa91c82ee53e12f10d903fc5a2401e2f91e714a7a703fcd315e198fa67ef2200552ed5e5edd246b1022a4e61f96de8d2110c8e6b1634b00009d0f
7
+ data.tar.gz: adfa849003004f11ac134daf17395f37a2f44148a75377045c8aba4a01ce5d2b546a0c73d13ce2631ac402f295703351dedbe36008a8dfea022c403b25e5a9ab
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ .project
2
+ coverage
3
+ Gemfile.lock
4
+ pkg
5
+ .ruby-version
data/.rubocop.yml ADDED
@@ -0,0 +1,24 @@
1
+ AllCops:
2
+ Include:
3
+ - '**/Gemfile'
4
+ - lib/**/*
5
+ - spec/**/*
6
+ - usblamp.gemspec
7
+ Exclude:
8
+ - files/**/*
9
+ - templates/**/*
10
+ MethodLength:
11
+ Exclude:
12
+ - lib/**/*
13
+ ClassLength:
14
+ Exclude:
15
+ - lib/**/*
16
+ ParameterLists:
17
+ Exclude:
18
+ - lib/**/*
19
+ Metrics/CyclomaticComplexity:
20
+ Severity: warning
21
+ Max: 10
22
+ Metrics/PerceivedComplexity:
23
+ Severity: warning
24
+ Max: 10
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1.0
6
+
7
+ script: bundle exec rake
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ # -*- encoding: utf-8 -*-
2
+ source 'https://rubygems.org/'
3
+
4
+ gemspec