rex-arch 0.1.8 → 0.1.9

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: b6bd19051b11209be4f0c0db5db905ccfedc8b10
4
- data.tar.gz: 59b1de37709d3dd1d02ad8a1b2ea0ca22f392f52
3
+ metadata.gz: 250d5a16e764f31072a3530931f33e8f2af78a4b
4
+ data.tar.gz: 456a77026ac03f469d37f50400cc28d59238e25d
5
5
  SHA512:
6
- metadata.gz: 8fb06378add349cb89e2404a297dd10ff1fc60fdec6bb1f47a7bd429c6ead9acedd86715aab487fbbc122633ae6cfd8f15babbb8d471d60598390cb5824416db
7
- data.tar.gz: 6e15efca9442ec59778d0aa5e1185c5cf300385dc96906b8e03b2c3d7c65ef4c34105fe449b51d560d691d52e922f63adddbd9bebd0d23923c07ca9b9c11d893
6
+ metadata.gz: cfb62fa3f045897ede00017b76e2274e5b55532a295cfab14e6cdc17b541ea440ffa6a517d90dc03cefb017064934daba77dd1db0d01a4caf6653438142b2291
7
+ data.tar.gz: 68b21b472df0351ce0e5f80cb31d8756d7578ed7cb15a80eb3c3a6e05f70a0cdbdf152d953581e11dac4cd6ca2791952474c5d85dc59efbb16001165d5d20461
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  module Rex
2
2
  module Arch
3
- VERSION = "0.1.8"
3
+ VERSION = "0.1.9"
4
4
  end
5
5
  end
@@ -14,8 +14,6 @@ Gem::Specification.new do |spec|
14
14
  spec.homepage = "https://github.com/rapid7/rex-arch"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
- spec.bindir = "exe"
18
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
17
  spec.require_paths = ["lib"]
20
18
 
21
19
  spec.required_ruby_version = '>= 2.2.0'
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rex-arch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - dmohanty-r7
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
@@ -88,7 +88,7 @@ cert_chain:
88
88
  G+Hmcg1v810agasPdoydE0RTVZgEOOMoQ07qu7JFXVWZ9ZQpHT7qJATWL/b2csFG
89
89
  8mVuTXnyJOKRJA==
90
90
  -----END CERTIFICATE-----
91
- date: 2017-05-30 00:00:00.000000000 Z
91
+ date: 2017-06-16 00:00:00.000000000 Z
92
92
  dependencies:
93
93
  - !ruby/object:Gem::Dependency
94
94
  name: bundler
@@ -162,8 +162,6 @@ files:
162
162
  - LICENSE
163
163
  - README.md
164
164
  - Rakefile
165
- - bin/console
166
- - bin/setup
167
165
  - lib/rex/arch.rb
168
166
  - lib/rex/arch/sparc.rb
169
167
  - lib/rex/arch/version.rb
metadata.gz.sig CHANGED
Binary file
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "rex/arch"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here