performance_promise 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.
- checksums.yaml +7 -0
- data/.gitignore +41 -0
- data/Gemfile +6 -0
- data/LICENSE +22 -0
- data/README.md +202 -0
- data/lib/performance_promise/decorators.rb +86 -0
- data/lib/performance_promise/lazily_evaluated.rb +78 -0
- data/lib/performance_promise/performance.rb +13 -0
- data/lib/performance_promise/performance_validations.rb +16 -0
- data/lib/performance_promise/speedy.rb +8 -0
- data/lib/performance_promise/sql_recorder.rb +41 -0
- data/lib/performance_promise/utils.rb +42 -0
- data/lib/performance_promise/validations/README.md +56 -0
- data/lib/performance_promise/validations/full_table_scans.rb +33 -0
- data/lib/performance_promise/validations/number_of_db_queries.rb +30 -0
- data/lib/performance_promise/validations/time_taken_for_render.rb +13 -0
- data/lib/performance_promise.rb +116 -0
- data/performance_promise.gemspec +13 -0
- data/spec/performance_promise_spec/lazily_evaluated.rb +53 -0
- data/spec/performance_promise_spec/performance.rb +31 -0
- data/spec/performance_promise_spec/speedy.rb +14 -0
- data/spec/performance_promise_spec.rb +230 -0
- data/spec/spec_helper.rb +121 -0
- metadata +70 -0
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: performance_promise
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Bipin Suresh
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-12-14 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Validate your Rails actions' performance
|
14
|
+
email: bipins@alumni.stanford.edu
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- ".gitignore"
|
20
|
+
- Gemfile
|
21
|
+
- LICENSE
|
22
|
+
- README.md
|
23
|
+
- lib/performance_promise.rb
|
24
|
+
- lib/performance_promise/decorators.rb
|
25
|
+
- lib/performance_promise/lazily_evaluated.rb
|
26
|
+
- lib/performance_promise/performance.rb
|
27
|
+
- lib/performance_promise/performance_validations.rb
|
28
|
+
- lib/performance_promise/speedy.rb
|
29
|
+
- lib/performance_promise/sql_recorder.rb
|
30
|
+
- lib/performance_promise/utils.rb
|
31
|
+
- lib/performance_promise/validations/README.md
|
32
|
+
- lib/performance_promise/validations/full_table_scans.rb
|
33
|
+
- lib/performance_promise/validations/number_of_db_queries.rb
|
34
|
+
- lib/performance_promise/validations/time_taken_for_render.rb
|
35
|
+
- performance_promise.gemspec
|
36
|
+
- spec/performance_promise_spec.rb
|
37
|
+
- spec/performance_promise_spec/lazily_evaluated.rb
|
38
|
+
- spec/performance_promise_spec/performance.rb
|
39
|
+
- spec/performance_promise_spec/speedy.rb
|
40
|
+
- spec/spec_helper.rb
|
41
|
+
homepage: http://rubygems.org/gems/performance_promise
|
42
|
+
licenses:
|
43
|
+
- MIT
|
44
|
+
metadata: {}
|
45
|
+
post_install_message:
|
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.4.8
|
62
|
+
signing_key:
|
63
|
+
specification_version: 4
|
64
|
+
summary: Validate your Rails actions' performance
|
65
|
+
test_files:
|
66
|
+
- spec/performance_promise_spec.rb
|
67
|
+
- spec/performance_promise_spec/lazily_evaluated.rb
|
68
|
+
- spec/performance_promise_spec/performance.rb
|
69
|
+
- spec/performance_promise_spec/speedy.rb
|
70
|
+
- spec/spec_helper.rb
|