rubyipmi 0.11.0 → 0.11.1

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
  SHA256:
3
- metadata.gz: 7d71a0a1e0d59728f61b38be628466e17f2a27b837138e538682afef45ee2d5a
4
- data.tar.gz: a7df4346c51b1147ecc1060a6b7c66a37a111fd78366fc9feadeb4b889900ac8
3
+ metadata.gz: ded5dae3237a5610e1b3d5e1595743be1401636b68b76965d9b1c4bfaa174ac8
4
+ data.tar.gz: bbfd85a434bfafdeccd6efbcea2dc898032b04b92ceb6c7ebe918f11ac12e4eb
5
5
  SHA512:
6
- metadata.gz: ca95d910f47ef78d95ffec0c67c7b5109c3b2d37be8e1068ed9f087c9bc77dbabd0eda7121c5d819ac9c6a94db7d09a4aeff3e147419913fc4b370447b969dd4
7
- data.tar.gz: 3418f3612947c775531ae3a1102953d8457e6887c4d01992f19d2cf2fec0d5a5fc7303b12a1c74ad2438fda471981075a57af9a036f57fe19c6d815b5997d41f
6
+ metadata.gz: 60e95d651aa6b3275f91ea531628c33a473eaaf3d3e34c7c60a61d97cbbcbedfa907356138010eae1d0eda3c0a362316f8fb34e472b594edc834bbd78b0bb619
7
+ data.tar.gz: 1d8bb664adf6c327a238358ace1a90fdff409cbf8b8328d15f7081f1e60f114f55efdfbe754f98f08ce92ea59079ebd970f07834b6c38b14c3300b622e99e84c
data/RELEASE_NOTES.md CHANGED
@@ -1,3 +1,6 @@
1
+ ### 0.11.1
2
+ * remove hidden files from gem package
3
+
1
4
  ### 0.11.0
2
5
  This is a big update with many minor changes and bug fixes. Thank you for all that submitted fixes.
3
6
  - Removes jeweler dependency and replaces with bundler commands, updates gemspec
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rubyipmi
4
- VERSION = '0.11.0'.freeze
4
+ VERSION = '0.11.1'.freeze
5
5
  end
data/rubyipmi.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
17
17
  "README.md"
18
18
  ]
19
19
  s.files = `git ls-files -z`.split("\x0").reject do |f|
20
- f.match(/^(test|spec|features)/) || f.match(/^*.tar\.gz/)
20
+ f.match(/^(\.|test|spec|features)/) || f.match(/^*.tar\.gz/)
21
21
  end
22
22
  s.homepage = "https://github.com/logicminds/rubyipmi"
23
23
  s.licenses = ["LGPLv2.1"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyipmi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Corey Osman
@@ -102,11 +102,6 @@ extra_rdoc_files:
102
102
  - LICENSE.txt
103
103
  - README.md
104
104
  files:
105
- - ".document"
106
- - ".gitignore"
107
- - ".rspec"
108
- - ".rubocop.yml"
109
- - ".travis.yml"
110
105
  - Gemfile
111
106
  - LICENSE.txt
112
107
  - README.md
data/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt
data/.gitignore DELETED
@@ -1,50 +0,0 @@
1
- # rcov generated
2
- coverage
3
- coverage.data
4
- .idea/
5
- # rdoc generated
6
- rdoc
7
- .vagrant/
8
- # yard generated
9
- doc
10
- .yardoc
11
- Gemfile.lock
12
- # bundler
13
- .bundle
14
- Gemfile.lock
15
-
16
- # jeweler generated
17
- pkg
18
- .vagrant
19
- # Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
20
- #
21
- # * Create a file at ~/.gitignore
22
- # * Include files you want ignored
23
- # * Run: git config --global core.excludesfile ~/.gitignore
24
- #
25
- # After doing this, these files will be ignored in all your git projects,
26
- # saving you from having to 'pollute' every project you touch with them
27
- #
28
- # Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
29
- #
30
- # For MacOS:
31
- #
32
- #.DS_Store
33
-
34
- # For TextMate
35
- #*.tmproj
36
- #tmtags
37
-
38
- # For emacs:
39
- #*~
40
- #\#*
41
- #.\#*
42
-
43
- # For vim:
44
- #*.swp
45
-
46
- # For redcar:
47
- #.redcar
48
-
49
- # For rubinius:
50
- #*.rbc
data/.rspec DELETED
@@ -1 +0,0 @@
1
- --color
data/.rubocop.yml DELETED
@@ -1,66 +0,0 @@
1
- Style/StringLiterals:
2
- Enabled: false
3
- AllCops:
4
- Exclude:
5
- - 'rubyipmi.gemspec'
6
- SignalException:
7
- EnforcedStyle: only_raise
8
- Documentation:
9
- Enabled: false
10
- ClassAndModuleChildren:
11
- Enabled: false
12
- HashSyntax:
13
- EnforcedStyle: hash_rockets
14
- ClassCheck:
15
- EnforcedStyle: kind_of?
16
- SpaceInsideHashLiteralBraces:
17
- EnforcedStyle: no_space
18
- Style/WordArray:
19
- Enabled: false
20
-
21
-
22
- # TODO: fix these
23
- Metrics/AbcSize:
24
- Max: 60
25
- Metrics/CyclomaticComplexity:
26
- Max: 19
27
- Metrics/LineLength:
28
- Max: 149
29
- Metrics/MethodLength:
30
- Max: 44
31
- Metrics/ModuleLength:
32
- Max: 128
33
- Metrics/PerceivedComplexity:
34
- Max: 22
35
- Style/SpecialGlobalVars:
36
- Exclude:
37
- - 'lib/rubyipmi.rb'
38
- - 'lib/rubyipmi/commands/basecommand.rb'
39
- - 'lib/rubyipmi/freeipmi/commands/fru.rb'
40
- - 'lib/rubyipmi/ipmitool/commands/fru.rb'
41
- Style/RescueModifier:
42
- Exclude:
43
- - 'lib/rubyipmi.rb'
44
- Style/RegexpLiteral:
45
- Exclude:
46
- - 'spec/spec_helper.rb'
47
- Style/PredicateName:
48
- Exclude:
49
- - 'lib/rubyipmi.rb'
50
- Lint/RescueException:
51
- Exclude:
52
- - 'spec/integration/rubyipmi_spec.rb'
53
- Style/AccessorMethodName:
54
- Exclude:
55
- - 'lib/rubyipmi/freeipmi/connection.rb'
56
- - 'lib/rubyipmi/ipmitool/connection.rb'
57
-
58
- # Fixed by deprecation
59
- Style/MethodName:
60
- Exclude:
61
- - 'lib/rubyipmi/commands/mixins/power_mixin.rb'
62
-
63
- # Don't understand
64
- Style/FileName:
65
- Exclude:
66
- - 'spec/unit/freeipmi/bmc-info_spec.rb'
data/.travis.yml DELETED
@@ -1,13 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 1.9.3
4
- - 2.0
5
- - 2.1.3
6
- - 2.2
7
- branches:
8
- only:
9
- - master
10
- - development
11
- notifications:
12
- email:
13
- - corey@logicminds.biz