stdlib 0.1.0 → 0.2.0
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 +5 -5
- data/stdlib.gemspec +14 -1
- metadata +23 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c0edb905d83b0616ffd21c2089542e04cd55d9ca1fa37a194197616730f85078
|
4
|
+
data.tar.gz: 757c8f2e831c67c8b6ca4d3bc6303cdad192c4d89b1e650d05a3e06395e746f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53e065b51e627fa2eb2326aa3950a702c599661b6624b963cbb6e30b2565f583d2a9a7ec71d17cff9d42bfba23606733e92ac2e660a02f02a4bf92c2b6392bad
|
7
|
+
data.tar.gz: b8ce6cce5966f643808dd1e953cc0badc094b873233e2defa3310bac116ebdef5fff54bcbcd7a14339d393b5a90223638d3b3de1324a4565dfcb15ba9ebca5a9
|
data/stdlib.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "stdlib"
|
7
|
-
spec.version = "0.
|
7
|
+
spec.version = "0.2.0"
|
8
8
|
spec.authors = ["Phillip Ridlen"]
|
9
9
|
spec.email = ["p@rdln.net"]
|
10
10
|
spec.description = %q{Use Bundler to manage stdlib dependencies. You probably shouldn't use this.}
|
@@ -19,4 +19,17 @@ Gem::Specification.new do |spec|
|
|
19
19
|
|
20
20
|
spec.add_development_dependency "bundler", "~> 1.3"
|
21
21
|
spec.add_development_dependency "rake"
|
22
|
+
|
23
|
+
spec.post_install_message = <<~MSG
|
24
|
+
You there! Yes, you!
|
25
|
+
|
26
|
+
Your project's Gemfile contains "stdlib". This gem was created as a
|
27
|
+
joke proof-of-concept and literally does NOTHING. Using this gem is
|
28
|
+
considered a BAD IDEA and you should remove it from your Gemfile
|
29
|
+
immediately. You've been warned!
|
30
|
+
|
31
|
+
If you need to use anything from the Ruby Standard Library, you do
|
32
|
+
not need to add anything to the Gemfile; simply require the portion
|
33
|
+
of the Standard Library that you need.
|
34
|
+
MSG
|
22
35
|
end
|
metadata
CHANGED
@@ -1,41 +1,41 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stdlib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phillip Ridlen
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.3'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - ~>
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
description: Use Bundler to manage stdlib dependencies. You probably shouldn't use
|
@@ -46,7 +46,7 @@ executables: []
|
|
46
46
|
extensions: []
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
|
-
- .gitignore
|
49
|
+
- ".gitignore"
|
50
50
|
- Gemfile
|
51
51
|
- LICENSE.txt
|
52
52
|
- README.md
|
@@ -56,24 +56,33 @@ homepage: https://github.com/philtr/stdlib
|
|
56
56
|
licenses:
|
57
57
|
- MIT
|
58
58
|
metadata: {}
|
59
|
-
post_install_message:
|
59
|
+
post_install_message: |
|
60
|
+
You there! Yes, you!
|
61
|
+
|
62
|
+
Your project's Gemfile contains "stdlib". This gem was created as a
|
63
|
+
joke proof-of-concept and literally does NOTHING. Using this gem is
|
64
|
+
considered a BAD IDEA and you should remove it from your Gemfile
|
65
|
+
immediately. You've been warned!
|
66
|
+
|
67
|
+
If you need to use anything from the Ruby Standard Library, you do
|
68
|
+
not need to add anything to the Gemfile; simply require the portion
|
69
|
+
of the Standard Library that you need.
|
60
70
|
rdoc_options: []
|
61
71
|
require_paths:
|
62
72
|
- lib
|
63
73
|
required_ruby_version: !ruby/object:Gem::Requirement
|
64
74
|
requirements:
|
65
|
-
- -
|
75
|
+
- - ">="
|
66
76
|
- !ruby/object:Gem::Version
|
67
77
|
version: '0'
|
68
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
79
|
requirements:
|
70
|
-
- -
|
80
|
+
- - ">="
|
71
81
|
- !ruby/object:Gem::Version
|
72
82
|
version: '0'
|
73
83
|
requirements: []
|
74
|
-
|
75
|
-
|
76
|
-
signing_key:
|
84
|
+
rubygems_version: 3.1.4
|
85
|
+
signing_key:
|
77
86
|
specification_version: 4
|
78
87
|
summary: Use Bundler to manage stdlib dependencies. You probably shouldn't use this.
|
79
88
|
test_files: []
|