hows-the-serenity 1.0.1

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 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
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
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
@@ -0,0 +1,2 @@
1
+ source "http://rubygems.org"
2
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,7 @@
1
+ ## License
2
+
3
+ Copyright © Tim Pope
4
+
5
+ This work is free. You can redistribute it and/or modify it under the
6
+ terms of the Do What The Fuck You Want To Public License, Version 2,
7
+ as published by Sam Hocevar. See the COPYING file for more details.
data/README.markdown ADDED
@@ -0,0 +1,3 @@
1
+ # We're going up to Bonnie Doon
2
+
3
+ How's the serenity.
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ $:.unshift(File.join(File.dirname(__FILE__), 'lib')).uniq!
2
+
3
+ begin
4
+ require "bundler/gem_tasks"
5
+ rescue LoadError
6
+ end
@@ -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
@@ -0,0 +1,7 @@
1
+ require 'rubygems/installer'
2
+
3
+ Gem::Installer.class_eval do
4
+ def say(message)
5
+ super unless message == spec.post_install_message
6
+ end
7
+ 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: []