port_authority 0
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 +7 -0
- data/Readme.md +8 -0
- data/port_authority.gemspec +14 -0
- metadata +49 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 76eb7e58d4e1efce07c6c18a06e65fe2515acd19
|
4
|
+
data.tar.gz: 07e3bb5f82c4c0921b0b54796f49890e472439d5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b6a3bf1cfe8f37f0d9cdf164408668f1fef23ce3aff9ec4a58ca17ef70a6927badb79a68ce6830abee1c8239c3c9b7193d0beb587f7a75f819473817bd0fcc4a
|
7
|
+
data.tar.gz: 4ce38e415bea05cadff319c906316cf9631357463e1b03689364e6de2b1164ae02198459cac49bc18c5432abf35e3e186f8a330a4389ca3976ef6ec9cd81bd85
|
data/Readme.md
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
Port Authority
|
2
|
+
==============
|
3
|
+
|
4
|
+
Npm inspired package management for Ruby.
|
5
|
+
Felt like it was worth playing with the idea after I commented about it https://twitter.com/josh_cheek/status/564560602828242944
|
6
|
+
|
7
|
+
Yes, I am squatting. If I haven't done anything with this in like a year, and you want the name,
|
8
|
+
let me know and I'll probably give it to you.
|
@@ -0,0 +1,14 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "port_authority"
|
3
|
+
s.version = '0'
|
4
|
+
s.authors = ["Josh Cheek"]
|
5
|
+
s.email = ["josh.cheek@gmail.com"]
|
6
|
+
s.homepage = "https://github.com/JoshCheek"
|
7
|
+
s.summary = %q{Npm style package management}
|
8
|
+
s.description = %q{https://twitter.com/josh_cheek/status/564560602828242944 Yes, I am squatting. If I haven't done anything with this in like a year, and you want the name, let me know and I'll probably give it to you.}
|
9
|
+
s.license = "WTFPL"
|
10
|
+
s.files = `git ls-files`.split("\n") - ['docs/seeing is believing.psd']
|
11
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
12
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
13
|
+
# s.require_paths = ["lib"]
|
14
|
+
end
|
metadata
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: port_authority
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '0'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Josh Cheek
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-02-09 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: https://twitter.com/josh_cheek/status/564560602828242944 Yes, I am squatting.
|
14
|
+
If I haven't done anything with this in like a year, and you want the name, let
|
15
|
+
me know and I'll probably give it to you.
|
16
|
+
email:
|
17
|
+
- josh.cheek@gmail.com
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- Readme.md
|
23
|
+
- port_authority.gemspec
|
24
|
+
homepage: https://github.com/JoshCheek
|
25
|
+
licenses:
|
26
|
+
- WTFPL
|
27
|
+
metadata: {}
|
28
|
+
post_install_message:
|
29
|
+
rdoc_options: []
|
30
|
+
require_paths:
|
31
|
+
- lib
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '0'
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
requirements: []
|
43
|
+
rubyforge_project:
|
44
|
+
rubygems_version: 2.4.1
|
45
|
+
signing_key:
|
46
|
+
specification_version: 4
|
47
|
+
summary: Npm style package management
|
48
|
+
test_files: []
|
49
|
+
has_rdoc:
|