pin 0.4.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +24 -0
- data/bin/pin +0 -0
- data/bin/pinhead +0 -0
- data/lib/pin/version.rb +3 -0
- data/pin.gemspec +31 -0
- metadata +84 -0
data/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# Pinhead
|
2
|
+
|
3
|
+
## Simple install
|
4
|
+
|
5
|
+
## `gem install pinhead`
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
## Simple usage
|
10
|
+
|
11
|
+
## Check is the default action (and currently the only)
|
12
|
+
## `pin`
|
13
|
+
|
14
|
+
## `pin gem:rails`
|
15
|
+
## `pin github:/carlhuda/bundler`
|
16
|
+
## `pin gh:/carlhuda/bundler`
|
17
|
+
## `pin git://anongit.freedesktop.org/systemd/systemd`
|
18
|
+
|
19
|
+
|
20
|
+
## Future work
|
21
|
+
|
22
|
+
### Please feel free to contribute! (No whitespace commits though)
|
23
|
+
|
24
|
+
##
|
data/bin/pin
ADDED
File without changes
|
data/bin/pinhead
ADDED
File without changes
|
data/lib/pin/version.rb
ADDED
data/pin.gemspec
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib/', __FILE__)
|
3
|
+
$:.unshift lib unless $:.include?(lib)
|
4
|
+
|
5
|
+
require 'pin/version'
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "pin"
|
9
|
+
s.version = Pin::VERSION
|
10
|
+
s.platform = Gem::Platform::RUBY
|
11
|
+
s.authors = ["Barry Allard"]
|
12
|
+
s.email = ["barry@barryallard.name"]
|
13
|
+
s.homepage = "http://steakknife.github.com/pinhead"
|
14
|
+
s.summary = %q{The best way to check your application's dependencies}
|
15
|
+
s.description = %q{Pinhead checks licenses of gems and maybe more.}
|
16
|
+
|
17
|
+
s.required_ruby_version = ">= 1.8.7"
|
18
|
+
s.required_rubygems_version = ">= 1.3.6"
|
19
|
+
s.rubyforge_project = "pin"
|
20
|
+
|
21
|
+
s.add_development_dependency "ronn"
|
22
|
+
s.add_development_dependency "rspec", "~> 2.0"
|
23
|
+
|
24
|
+
# Man files are required because they are ignored by git
|
25
|
+
man_files = Dir.glob("lib/pin/man/**/*")
|
26
|
+
git_files = `git ls-files`.split("\n") rescue ''
|
27
|
+
s.files = git_files + man_files
|
28
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
29
|
+
s.executables = %w(pin)
|
30
|
+
s.require_paths = ["lib"]
|
31
|
+
end
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pin
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.5
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Barry Allard
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-04-06 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: ronn
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rspec
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '2.0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '2.0'
|
46
|
+
description: Pinhead checks licenses of gems and maybe more.
|
47
|
+
email:
|
48
|
+
- barry@barryallard.name
|
49
|
+
executables:
|
50
|
+
- pin
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- README.md
|
55
|
+
- bin/pin
|
56
|
+
- bin/pinhead
|
57
|
+
- lib/pin/version.rb
|
58
|
+
- pin.gemspec
|
59
|
+
homepage: http://steakknife.github.com/pinhead
|
60
|
+
licenses: []
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
67
|
+
requirements:
|
68
|
+
- - ! '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 1.8.7
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 1.3.6
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project: pin
|
79
|
+
rubygems_version: 1.8.21
|
80
|
+
signing_key:
|
81
|
+
specification_version: 3
|
82
|
+
summary: The best way to check your application's dependencies
|
83
|
+
test_files: []
|
84
|
+
has_rdoc:
|