false 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d2683e81def5fcd1d5f30c330676e2383ae2e4cde23e14b4a832e980dfa2c922
4
+ data.tar.gz: 432185de0922065d8c442663a9795d663a3942e05bfb8ffbbf1d3506de2ebe44
5
+ SHA512:
6
+ metadata.gz: fe93a9de76c1fabc4a42cc7766e902ae02cad905c4772873b0346889a047a4da9bbd5970d8e71775975fd163aee597a9315b355a10c32709ac1a1e9cc90cd64b
7
+ data.tar.gz: 683713254150cd8e3513191ea9b63954e3299f1ca3a5bcc8c6f38d6bf53ba5923699f596f9022c820ceba0583d10077be9b0660e2df343b4c53765e9caead437
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Patrick Tulskie
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,38 @@
1
+ # False
2
+
3
+ Welcome to false! Don't install this gem. You don't need it.
4
+
5
+ ## Installation
6
+
7
+ Do not add this to your Gemfile.
8
+
9
+ ```ruby
10
+ gem 'false'
11
+ ```
12
+
13
+ And then you should certainly not execute:
14
+
15
+ $ bundle install
16
+
17
+ This might be okay:
18
+
19
+ $ gem install false
20
+
21
+ ## Usage
22
+
23
+ You're probably wondering how you wound up here. You likely have something in a gemspec that looks like this:
24
+
25
+ spec.add_runtime_dependency 'rails' <= "5.0"
26
+
27
+ When what you really meant to put was this:
28
+
29
+ spec.add_runtime_dependency 'rails', "<= 5.0"
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/PatrickTulskie/false.
34
+
35
+
36
+ ## License
37
+
38
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,5 @@
1
+ module False
2
+ Error = Class.new(StandardError)
3
+ end
4
+
5
+ warn "Warning: Loaded the false gem. You probably have an error in your gemspec."
@@ -0,0 +1,3 @@
1
+ module False
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: 'false'
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Patrick Tulskie
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-09-08 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Don't install this gem. It's a canary, signifying that your gemspec is
14
+ messed up.
15
+ email:
16
+ - patricktulskie@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - LICENSE.txt
22
+ - README.md
23
+ - lib/false.rb
24
+ - lib/false/version.rb
25
+ homepage: https://github.com/PatrickTulskie/false
26
+ licenses:
27
+ - MIT
28
+ metadata:
29
+ homepage_uri: https://github.com/PatrickTulskie/false
30
+ source_code_uri: https://github.com/PatrickTulskie/false
31
+ post_install_message: 'Warning: Installed the false gem. You probably have an error
32
+ in your gemspec.'
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.3.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.1.2
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: Don't install this gem. It's a canary, signifying that your gemspec is messed
51
+ up.
52
+ test_files: []