mspac 0.1.5 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d6362ae44d9253e9b53f5e16f0253d4c087e1faa
4
- data.tar.gz: 8ab187563fa7a7e8cf1b16b419b9f323cc4d6f4a
3
+ metadata.gz: 1b6590cb8c98b4d7b74bdec0c666a1cdf36dafae
4
+ data.tar.gz: 335b53ae4914efdf3b07804ace2c4fc79a0622d2
5
5
  SHA512:
6
- metadata.gz: b4e689fd5617134f7b19e0240561d37ec42a38be804f0bb489c9c3d7332921e3f77046da387ebcf7d9001ae401f9d5078743f89b9bd55df4802ece54a43bf4d3
7
- data.tar.gz: bf3414767ca1c7940c7c5db30920ddda0e3414c4ebc74b19ee44ac0314a976e8cc20e1ef79cd12212072b74b5a14ffe8ceddaa0c5a45d12ffd73fc7e687daeb4
6
+ metadata.gz: 73325d405110ace0162e9ba368a4e686631e7864ba83b979d0d777e777c18ad0632e890fa5060c1166d47843be67cbacbfb7fb98834111ca6cd7b498ba8fe362
7
+ data.tar.gz: c837b8963050a62419020d15bae674f8780a594962eefe7fd3b74a10c642f3285f5803582e1bf9b1dd94e737183debd55b31f3b7ac0afd1051feae178227f191
data/lib/mspac/error.rb CHANGED
@@ -1,9 +1,7 @@
1
1
  class MsPac::Error < RuntimeError
2
2
  end
3
3
 
4
- require "mspac/error/invalid_operation_error"
5
4
  require "mspac/error/missing_pellet_error"
6
- require "mspac/error/multiple_operations_error"
7
5
  require "mspac/error/pellet_not_installed_error"
8
6
  require "mspac/error/pellet_repo_error"
9
7
  require "mspac/error/unsupported_package_manager_error"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mspac
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Whittaker
@@ -44,9 +44,7 @@ files:
44
44
  - bin/mspac
45
45
  - lib/mspac.rb
46
46
  - lib/mspac/error.rb
47
- - lib/mspac/error/invalid_operation_error.rb
48
47
  - lib/mspac/error/missing_pellet_error.rb
49
- - lib/mspac/error/multiple_operations_error.rb
50
48
  - lib/mspac/error/pellet_not_installed_error.rb
51
49
  - lib/mspac/error/pellet_repo_error.rb
52
50
  - lib/mspac/error/unsupported_package_manager_error.rb
@@ -1,5 +0,0 @@
1
- class MsPac::Error::InvalidOperationError < MsPac::Error
2
- def initialize(op = "")
3
- super("Unsupported operation: #{op}")
4
- end
5
- end
@@ -1,5 +0,0 @@
1
- class MsPac::Error::MultipleOperationsError < MsPac::Error
2
- def initialize
3
- super("Too many operations were specified")
4
- end
5
- end