nano-quick-tool 0.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.
Potentially problematic release.
This version of nano-quick-tool might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/bullet-8.1.3/CHANGELOG.md +374 -0
- data/bullet-8.1.3/MIT-LICENSE +20 -0
- data/bullet-8.1.3/README.md +525 -0
- data/bullet-8.1.3/lib/bullet/active_job.rb +13 -0
- data/bullet-8.1.3/lib/bullet/active_record4.rb +197 -0
- data/bullet-8.1.3/lib/bullet/active_record41.rb +191 -0
- data/bullet-8.1.3/lib/bullet/active_record42.rb +262 -0
- data/bullet-8.1.3/lib/bullet/active_record5.rb +294 -0
- data/bullet-8.1.3/lib/bullet/active_record52.rb +278 -0
- data/bullet-8.1.3/lib/bullet/active_record60.rb +310 -0
- data/bullet-8.1.3/lib/bullet/active_record61.rb +310 -0
- data/bullet-8.1.3/lib/bullet/active_record70.rb +319 -0
- data/bullet-8.1.3/lib/bullet/active_record71.rb +319 -0
- data/bullet-8.1.3/lib/bullet/active_record72.rb +319 -0
- data/bullet-8.1.3/lib/bullet/active_record80.rb +319 -0
- data/bullet-8.1.3/lib/bullet/active_record81.rb +321 -0
- data/bullet-8.1.3/lib/bullet/bullet_xhr.js +64 -0
- data/bullet-8.1.3/lib/bullet/dependency.rb +165 -0
- data/bullet-8.1.3/lib/bullet/detector/association.rb +92 -0
- data/bullet-8.1.3/lib/bullet/detector/base.rb +8 -0
- data/bullet-8.1.3/lib/bullet/detector/counter_cache.rb +69 -0
- data/bullet-8.1.3/lib/bullet/detector/n_plus_one_query.rb +148 -0
- data/bullet-8.1.3/lib/bullet/detector/unused_eager_loading.rb +100 -0
- data/bullet-8.1.3/lib/bullet/detector.rb +11 -0
- data/bullet-8.1.3/lib/bullet/ext/object.rb +37 -0
- data/bullet-8.1.3/lib/bullet/ext/string.rb +14 -0
- data/bullet-8.1.3/lib/bullet/mongoid4x.rb +59 -0
- data/bullet-8.1.3/lib/bullet/mongoid5x.rb +59 -0
- data/bullet-8.1.3/lib/bullet/mongoid6x.rb +59 -0
- data/bullet-8.1.3/lib/bullet/mongoid7x.rb +74 -0
- data/bullet-8.1.3/lib/bullet/mongoid8x.rb +61 -0
- data/bullet-8.1.3/lib/bullet/mongoid9x.rb +74 -0
- data/bullet-8.1.3/lib/bullet/notification/base.rb +92 -0
- data/bullet-8.1.3/lib/bullet/notification/counter_cache.rb +15 -0
- data/bullet-8.1.3/lib/bullet/notification/n_plus_one_query.rb +31 -0
- data/bullet-8.1.3/lib/bullet/notification/unused_eager_loading.rb +31 -0
- data/bullet-8.1.3/lib/bullet/notification.rb +13 -0
- data/bullet-8.1.3/lib/bullet/notification_collector.rb +25 -0
- data/bullet-8.1.3/lib/bullet/rack.rb +186 -0
- data/bullet-8.1.3/lib/bullet/registry/association.rb +16 -0
- data/bullet-8.1.3/lib/bullet/registry/base.rb +46 -0
- data/bullet-8.1.3/lib/bullet/registry/call_stack.rb +17 -0
- data/bullet-8.1.3/lib/bullet/registry/object.rb +18 -0
- data/bullet-8.1.3/lib/bullet/registry.rb +10 -0
- data/bullet-8.1.3/lib/bullet/stack_trace_filter.rb +67 -0
- data/bullet-8.1.3/lib/bullet/version.rb +5 -0
- data/bullet-8.1.3/lib/bullet.rb +437 -0
- data/bullet-8.1.3/lib/generators/bullet/install_generator.rb +47 -0
- data/bullet-8.1.3/tasks/bullet_tasks.rake +11 -0
- data/nano-quick-tool.gemspec +12 -0
- metadata +91 -0
metadata
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: nano-quick-tool
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Prvaz12_mars
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-07-13 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: University research based on bullet
|
|
13
|
+
email:
|
|
14
|
+
- jdvrie98@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- bullet-8.1.3/CHANGELOG.md
|
|
20
|
+
- bullet-8.1.3/MIT-LICENSE
|
|
21
|
+
- bullet-8.1.3/README.md
|
|
22
|
+
- bullet-8.1.3/lib/bullet.rb
|
|
23
|
+
- bullet-8.1.3/lib/bullet/active_job.rb
|
|
24
|
+
- bullet-8.1.3/lib/bullet/active_record4.rb
|
|
25
|
+
- bullet-8.1.3/lib/bullet/active_record41.rb
|
|
26
|
+
- bullet-8.1.3/lib/bullet/active_record42.rb
|
|
27
|
+
- bullet-8.1.3/lib/bullet/active_record5.rb
|
|
28
|
+
- bullet-8.1.3/lib/bullet/active_record52.rb
|
|
29
|
+
- bullet-8.1.3/lib/bullet/active_record60.rb
|
|
30
|
+
- bullet-8.1.3/lib/bullet/active_record61.rb
|
|
31
|
+
- bullet-8.1.3/lib/bullet/active_record70.rb
|
|
32
|
+
- bullet-8.1.3/lib/bullet/active_record71.rb
|
|
33
|
+
- bullet-8.1.3/lib/bullet/active_record72.rb
|
|
34
|
+
- bullet-8.1.3/lib/bullet/active_record80.rb
|
|
35
|
+
- bullet-8.1.3/lib/bullet/active_record81.rb
|
|
36
|
+
- bullet-8.1.3/lib/bullet/bullet_xhr.js
|
|
37
|
+
- bullet-8.1.3/lib/bullet/dependency.rb
|
|
38
|
+
- bullet-8.1.3/lib/bullet/detector.rb
|
|
39
|
+
- bullet-8.1.3/lib/bullet/detector/association.rb
|
|
40
|
+
- bullet-8.1.3/lib/bullet/detector/base.rb
|
|
41
|
+
- bullet-8.1.3/lib/bullet/detector/counter_cache.rb
|
|
42
|
+
- bullet-8.1.3/lib/bullet/detector/n_plus_one_query.rb
|
|
43
|
+
- bullet-8.1.3/lib/bullet/detector/unused_eager_loading.rb
|
|
44
|
+
- bullet-8.1.3/lib/bullet/ext/object.rb
|
|
45
|
+
- bullet-8.1.3/lib/bullet/ext/string.rb
|
|
46
|
+
- bullet-8.1.3/lib/bullet/mongoid4x.rb
|
|
47
|
+
- bullet-8.1.3/lib/bullet/mongoid5x.rb
|
|
48
|
+
- bullet-8.1.3/lib/bullet/mongoid6x.rb
|
|
49
|
+
- bullet-8.1.3/lib/bullet/mongoid7x.rb
|
|
50
|
+
- bullet-8.1.3/lib/bullet/mongoid8x.rb
|
|
51
|
+
- bullet-8.1.3/lib/bullet/mongoid9x.rb
|
|
52
|
+
- bullet-8.1.3/lib/bullet/notification.rb
|
|
53
|
+
- bullet-8.1.3/lib/bullet/notification/base.rb
|
|
54
|
+
- bullet-8.1.3/lib/bullet/notification/counter_cache.rb
|
|
55
|
+
- bullet-8.1.3/lib/bullet/notification/n_plus_one_query.rb
|
|
56
|
+
- bullet-8.1.3/lib/bullet/notification/unused_eager_loading.rb
|
|
57
|
+
- bullet-8.1.3/lib/bullet/notification_collector.rb
|
|
58
|
+
- bullet-8.1.3/lib/bullet/rack.rb
|
|
59
|
+
- bullet-8.1.3/lib/bullet/registry.rb
|
|
60
|
+
- bullet-8.1.3/lib/bullet/registry/association.rb
|
|
61
|
+
- bullet-8.1.3/lib/bullet/registry/base.rb
|
|
62
|
+
- bullet-8.1.3/lib/bullet/registry/call_stack.rb
|
|
63
|
+
- bullet-8.1.3/lib/bullet/registry/object.rb
|
|
64
|
+
- bullet-8.1.3/lib/bullet/stack_trace_filter.rb
|
|
65
|
+
- bullet-8.1.3/lib/bullet/version.rb
|
|
66
|
+
- bullet-8.1.3/lib/generators/bullet/install_generator.rb
|
|
67
|
+
- bullet-8.1.3/tasks/bullet_tasks.rake
|
|
68
|
+
- nano-quick-tool.gemspec
|
|
69
|
+
homepage: https://rubygems.org/profiles/Prvaz12_mars
|
|
70
|
+
licenses:
|
|
71
|
+
- MIT
|
|
72
|
+
metadata:
|
|
73
|
+
source_code_uri: https://github.com/Prvaz12_mars/nano-quick-tool
|
|
74
|
+
rdoc_options: []
|
|
75
|
+
require_paths:
|
|
76
|
+
- lib
|
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
|
+
requirements:
|
|
84
|
+
- - ">="
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: '0'
|
|
87
|
+
requirements: []
|
|
88
|
+
rubygems_version: 3.6.2
|
|
89
|
+
specification_version: 4
|
|
90
|
+
summary: Research test
|
|
91
|
+
test_files: []
|