ruby_smart-support 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/ruby.yml +38 -0
- data/.gitignore +19 -0
- data/.rspec +3 -0
- data/Gemfile +7 -0
- data/README.md +200 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/docs/CHANGELOG.md +15 -0
- data/docs/CODE_OF_CONDUCT.md +84 -0
- data/docs/LICENSE.txt +21 -0
- data/lib/gem_info.rb +6 -0
- data/lib/ruby_smart/support/core_ext/activesupport/hash.rb +70 -0
- data/lib/ruby_smart/support/core_ext/rails/info.rb +14 -0
- data/lib/ruby_smart/support/core_ext/rake/task.rb +58 -0
- data/lib/ruby_smart/support/core_ext/ruby/array.rb +36 -0
- data/lib/ruby_smart/support/core_ext/ruby/float.rb +37 -0
- data/lib/ruby_smart/support/core_ext/ruby/hash.rb +27 -0
- data/lib/ruby_smart/support/core_ext/ruby/object.rb +51 -0
- data/lib/ruby_smart/support/core_ext/ruby/string.rb +23 -0
- data/lib/ruby_smart/support/core_ext.rb +29 -0
- data/lib/ruby_smart/support/gem_info.rb +207 -0
- data/lib/ruby_smart/support/gem_version.rb +23 -0
- data/lib/ruby_smart/support/thread_info.rb +140 -0
- data/lib/ruby_smart/support/version.rb +12 -0
- data/lib/ruby_smart/support.rb +11 -0
- data/lib/ruby_smart-support.rb +3 -0
- data/lib/thread_info.rb +6 -0
- data/ruby_smart-support.gemspec +38 -0
- metadata +137 -0
metadata
ADDED
@@ -0,0 +1,137 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby_smart-support
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tobias Gonsior
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-11-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '13.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '13.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simplecov
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.21'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.21'
|
69
|
+
description: 'RubySmart::Support is a toolkit of support libraries for Ruby - major
|
70
|
+
features includes GemInfo & ThreadInfo, as well core extensions for Ruby & activesupport
|
71
|
+
(if installed).
|
72
|
+
|
73
|
+
'
|
74
|
+
email:
|
75
|
+
- info@ruby-smart.org
|
76
|
+
executables: []
|
77
|
+
extensions: []
|
78
|
+
extra_rdoc_files: []
|
79
|
+
files:
|
80
|
+
- ".github/workflows/ruby.yml"
|
81
|
+
- ".gitignore"
|
82
|
+
- ".rspec"
|
83
|
+
- Gemfile
|
84
|
+
- README.md
|
85
|
+
- Rakefile
|
86
|
+
- bin/console
|
87
|
+
- bin/setup
|
88
|
+
- docs/CHANGELOG.md
|
89
|
+
- docs/CODE_OF_CONDUCT.md
|
90
|
+
- docs/LICENSE.txt
|
91
|
+
- lib/gem_info.rb
|
92
|
+
- lib/ruby_smart-support.rb
|
93
|
+
- lib/ruby_smart/support.rb
|
94
|
+
- lib/ruby_smart/support/core_ext.rb
|
95
|
+
- lib/ruby_smart/support/core_ext/activesupport/hash.rb
|
96
|
+
- lib/ruby_smart/support/core_ext/rails/info.rb
|
97
|
+
- lib/ruby_smart/support/core_ext/rake/task.rb
|
98
|
+
- lib/ruby_smart/support/core_ext/ruby/array.rb
|
99
|
+
- lib/ruby_smart/support/core_ext/ruby/float.rb
|
100
|
+
- lib/ruby_smart/support/core_ext/ruby/hash.rb
|
101
|
+
- lib/ruby_smart/support/core_ext/ruby/object.rb
|
102
|
+
- lib/ruby_smart/support/core_ext/ruby/string.rb
|
103
|
+
- lib/ruby_smart/support/gem_info.rb
|
104
|
+
- lib/ruby_smart/support/gem_version.rb
|
105
|
+
- lib/ruby_smart/support/thread_info.rb
|
106
|
+
- lib/ruby_smart/support/version.rb
|
107
|
+
- lib/thread_info.rb
|
108
|
+
- ruby_smart-support.gemspec
|
109
|
+
homepage: https://github.com/ruby-smart/support
|
110
|
+
licenses:
|
111
|
+
- MIT
|
112
|
+
metadata:
|
113
|
+
homepage_uri: https://github.com/ruby-smart/support
|
114
|
+
source_code_uri: https://github.com/ruby-smart/support
|
115
|
+
changelog_uri: https://github.com/ruby-smart/support/blob/main/docs/CHANGELOG.md
|
116
|
+
allowed_push_host: https://rubygems.org
|
117
|
+
post_install_message:
|
118
|
+
rdoc_options: []
|
119
|
+
require_paths:
|
120
|
+
- lib
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: 2.6.0
|
126
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
requirements: []
|
132
|
+
rubygems_version: 3.3.7
|
133
|
+
signing_key:
|
134
|
+
specification_version: 4
|
135
|
+
summary: A toolkit of support libraries including GemInfo, ThreadInfo, Ruby core extensions
|
136
|
+
& optionally activesupport extensions
|
137
|
+
test_files: []
|