hows-the-serenity 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/COPYING +11 -0
- data/Gemfile +2 -0
- data/LICENSE.md +7 -0
- data/README.markdown +3 -0
- data/Rakefile +6 -0
- data/hows-the-serenity.gemspec +18 -0
- data/lib/rubygems_plugin.rb +7 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d4c6bb0d6285607fb1f55f22cddba99c513685d3
|
4
|
+
data.tar.gz: f66624721162700c1083ad9d426f808ebc752c5e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9342648e3e8385869c76738c7f858a8578fc10386add74c55ad0f3554ff916f2fc1c4e3282a0e05c2972e7cf92e3937dc66002c0c1486aca4345488fa1b8b797
|
7
|
+
data.tar.gz: fa583d8a48f1005cc773d1ee6960c792a4a74c93a53042a4de776ec0016f02861e6680613ba19259583f6b65e9dd1e2677deaa01ef3a15f50cfd5d610882a6a6
|
data/.gitignore
ADDED
data/COPYING
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
2
|
+
Version 2, December 2004
|
3
|
+
|
4
|
+
Everyone is permitted to copy and distribute verbatim or modified
|
5
|
+
copies of this license document, and changing it is allowed as long
|
6
|
+
as the name is changed.
|
7
|
+
|
8
|
+
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
9
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
10
|
+
|
11
|
+
0. You just DO WHAT THE FUCK YOU WANT TO.
|
data/Gemfile
ADDED
data/LICENSE.md
ADDED
data/README.markdown
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "hows-the-serenity"
|
6
|
+
s.version = "1.0.1"
|
7
|
+
s.licenses = "Nonstandard"
|
8
|
+
s.authors = ["Tim Pope"]
|
9
|
+
s.email = ["code@tpop"+'e.net']
|
10
|
+
s.homepage = "https://github.com/tpope/gem-shut-the-fuck-up"
|
11
|
+
s.summary = %q{Disable gem post installation messages}
|
12
|
+
s.files = `git ls-files`.split("\n")
|
13
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
14
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
15
|
+
s.require_paths = ["lib"]
|
16
|
+
|
17
|
+
s.add_development_dependency('rake', '~> 0')
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hows-the-serenity
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tim Pope
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-09-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
- code@tpope.net
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- .gitignore
|
35
|
+
- COPYING
|
36
|
+
- Gemfile
|
37
|
+
- LICENSE.md
|
38
|
+
- README.markdown
|
39
|
+
- Rakefile
|
40
|
+
- hows-the-serenity.gemspec
|
41
|
+
- lib/rubygems_plugin.rb
|
42
|
+
homepage: https://github.com/tpope/gem-shut-the-fuck-up
|
43
|
+
licenses:
|
44
|
+
- Nonstandard
|
45
|
+
metadata: {}
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options: []
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - '>='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
60
|
+
requirements: []
|
61
|
+
rubyforge_project:
|
62
|
+
rubygems_version: 2.6.6
|
63
|
+
signing_key:
|
64
|
+
specification_version: 4
|
65
|
+
summary: Disable gem post installation messages
|
66
|
+
test_files: []
|