gem-shut-the-fuck-up 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4c776ab307cecd10a109392c67962d01e8aeab08
4
+ data.tar.gz: e05a41420016ed35e85250e308433d5f4e3707fe
5
+ SHA512:
6
+ metadata.gz: 9a96275a805a7d07269bbadd7cee7e28d7166347b363139f9ba5cb3c8d5989b1bd2a3bbdcbd0b39a160f8b4ce9b9e5d1a137035471a4553814232304a902d6ba
7
+ data.tar.gz: 420042911416b378af9e606727026a4e1bc21a4538a69868d1a2defb76ea73fc4a24f2219bd5a8021c8252450c72796981542282659bcc69f9705d0afc34b913
@@ -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
@@ -0,0 +1,25 @@
1
+ # Gem SHUT THE FUCK UP
2
+
3
+ Fuck your changelog. Fuck your party rules. Fuck your entirely superfluous
4
+ description of the gem I already decided to install.
5
+
6
+ Gem Shut The Fuck Up turns off obnoxious and useless post install messages,
7
+ which happens to be all of them.
8
+
9
+ ## Installation
10
+
11
+ $ gem install gem-shut-the-fuck-up
12
+
13
+ ## Usage
14
+
15
+ $ gem install httparty
16
+ Successfully installed httparty-0.13.3
17
+ 1 gem installed
18
+
19
+ ## License
20
+
21
+ Copyright © Tim Pope
22
+
23
+ This work is free. You can redistribute it and/or modify it under the
24
+ terms of the Do What The Fuck You Want To Public License, Version 2,
25
+ as published by Sam Hocevar. See the COPYING file for more details.
@@ -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,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,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gem-shut-the-fuck-up
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Tim Pope
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-27 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
+ - README.markdown
38
+ - Rakefile
39
+ - lib/rubygems_plugin.rb
40
+ homepage: https://github.com/tpope/gem-shut-the-fuck-up
41
+ licenses: []
42
+ metadata: {}
43
+ post_install_message: "\e[35;5m\n##################################################################\n#
44
+ \ #\n# \e[0;1mWhen
45
+ you Gem shut the fuck up, you must shut the fuck up hard!\e[0;5;35m #\n# #\n##################################################################\n\e[0m\n"
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 2.2.2
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: Disable gem post installation messages
65
+ test_files: []