cache_crispies 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +1 -0
- data/lib/cache_crispies/attribute.rb +66 -0
- data/lib/cache_crispies/base.rb +110 -0
- data/lib/cache_crispies/collection.rb +43 -0
- data/lib/cache_crispies/condition.rb +30 -0
- data/lib/cache_crispies/controller.rb +26 -0
- data/lib/cache_crispies/hash_builder.rb +61 -0
- data/lib/cache_crispies/memoizer.rb +18 -0
- data/lib/cache_crispies/plan.rb +68 -0
- data/lib/cache_crispies/version.rb +3 -0
- data/lib/cache_crispies.rb +18 -0
- data/spec/attribute_spec.rb +159 -0
- data/spec/base_spec.rb +153 -0
- data/spec/collection_spec.rb +75 -0
- data/spec/condition_spec.rb +45 -0
- data/spec/controller_spec.rb +54 -0
- data/spec/fixtures/test_serializer.rb +2 -0
- data/spec/hash_builder_spec.rb +145 -0
- data/spec/memoizer_spec.rb +24 -0
- data/spec/plan_spec.rb +151 -0
- data/spec/spec_helper.rb +102 -0
- metadata +143 -0
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
require 'byebug'
|
2
|
+
|
3
|
+
require_relative '../lib/cache_crispies'
|
4
|
+
|
5
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
6
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
7
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
8
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
9
|
+
# files.
|
10
|
+
#
|
11
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
12
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
13
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
14
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
15
|
+
# a separate helper file that requires the additional dependencies and performs
|
16
|
+
# the additional setup, and require it from the spec files that actually need
|
17
|
+
# it.
|
18
|
+
#
|
19
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
20
|
+
RSpec.configure do |config|
|
21
|
+
# rspec-expectations config goes here. You can use an alternate
|
22
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
23
|
+
# assertions if you prefer.
|
24
|
+
config.expect_with :rspec do |expectations|
|
25
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
26
|
+
# and `failure_message` of custom matchers include text for helper methods
|
27
|
+
# defined using `chain`, e.g.:
|
28
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
29
|
+
# # => "be bigger than 2 and smaller than 4"
|
30
|
+
# ...rather than:
|
31
|
+
# # => "be bigger than 2"
|
32
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
33
|
+
end
|
34
|
+
|
35
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
36
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
37
|
+
config.mock_with :rspec do |mocks|
|
38
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
39
|
+
# a real object. This is generally recommended, and will default to
|
40
|
+
# `true` in RSpec 4.
|
41
|
+
mocks.verify_partial_doubles = true
|
42
|
+
end
|
43
|
+
|
44
|
+
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
45
|
+
# have no way to turn it off -- the option exists only for backwards
|
46
|
+
# compatibility in RSpec 3). It causes shared context metadata to be
|
47
|
+
# inherited by the metadata hash of host groups and examples, rather than
|
48
|
+
# triggering implicit auto-inclusion in groups with matching metadata.
|
49
|
+
config.shared_context_metadata_behavior = :apply_to_host_groups
|
50
|
+
|
51
|
+
# The settings below are suggested to provide a good initial experience
|
52
|
+
# with RSpec, but feel free to customize to your heart's content.
|
53
|
+
# # This allows you to limit a spec run to individual examples or groups
|
54
|
+
# # you care about by tagging them with `:focus` metadata. When nothing
|
55
|
+
# # is tagged with `:focus`, all examples get run. RSpec also provides
|
56
|
+
# # aliases for `it`, `describe`, and `context` that include `:focus`
|
57
|
+
# # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
|
58
|
+
# config.filter_run_when_matching :focus
|
59
|
+
#
|
60
|
+
# # Allows RSpec to persist some state between runs in order to support
|
61
|
+
# # the `--only-failures` and `--next-failure` CLI options. We recommend
|
62
|
+
# # you configure your source control system to ignore this file.
|
63
|
+
# config.example_status_persistence_file_path = "spec/examples.txt"
|
64
|
+
#
|
65
|
+
# # Limits the available syntax to the non-monkey patched syntax that is
|
66
|
+
# # recommended. For more details, see:
|
67
|
+
# # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
68
|
+
# # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
69
|
+
# # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
70
|
+
# config.disable_monkey_patching!
|
71
|
+
#
|
72
|
+
# # This setting enables warnings. It's recommended, but in some cases may
|
73
|
+
# # be too noisy due to issues in dependencies.
|
74
|
+
# config.warnings = true
|
75
|
+
#
|
76
|
+
# # Many RSpec users commonly either run the entire suite or an individual
|
77
|
+
# # file, and it's useful to allow more verbose output when running an
|
78
|
+
# # individual spec file.
|
79
|
+
# if config.files_to_run.one?
|
80
|
+
# # Use the documentation formatter for detailed output,
|
81
|
+
# # unless a formatter has already been configured
|
82
|
+
# # (e.g. via a command-line flag).
|
83
|
+
# config.default_formatter = "doc"
|
84
|
+
# end
|
85
|
+
#
|
86
|
+
# # Print the 10 slowest examples and example groups at the
|
87
|
+
# # end of the spec run, to help surface which specs are running
|
88
|
+
# # particularly slow.
|
89
|
+
# config.profile_examples = 10
|
90
|
+
#
|
91
|
+
# # Run specs in random order to surface order dependencies. If you find an
|
92
|
+
# # order dependency and want to debug it, you can fix the order by providing
|
93
|
+
# # the seed, which is printed after each run.
|
94
|
+
# # --seed 1234
|
95
|
+
# config.order = :random
|
96
|
+
#
|
97
|
+
# # Seed global randomization in this process using the `--seed` CLI option.
|
98
|
+
# # Setting this allows you to use `--seed` to deterministically reproduce
|
99
|
+
# # test failures related to randomization by passing the same `--seed` value
|
100
|
+
# # as the one that triggered the failure.
|
101
|
+
# Kernel.srand config.seed
|
102
|
+
end
|
metadata
ADDED
@@ -0,0 +1,143 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cache_crispies
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Adam Crownoble
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-07-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: oj
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.7'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rails
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '5.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '5.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: byebug
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '11.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '11.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 3.8.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 3.8.0
|
83
|
+
description:
|
84
|
+
email: adam@codenoble.com
|
85
|
+
executables: []
|
86
|
+
extensions: []
|
87
|
+
extra_rdoc_files: []
|
88
|
+
files:
|
89
|
+
- ".rspec"
|
90
|
+
- lib/cache_crispies.rb
|
91
|
+
- lib/cache_crispies/attribute.rb
|
92
|
+
- lib/cache_crispies/base.rb
|
93
|
+
- lib/cache_crispies/collection.rb
|
94
|
+
- lib/cache_crispies/condition.rb
|
95
|
+
- lib/cache_crispies/controller.rb
|
96
|
+
- lib/cache_crispies/hash_builder.rb
|
97
|
+
- lib/cache_crispies/memoizer.rb
|
98
|
+
- lib/cache_crispies/plan.rb
|
99
|
+
- lib/cache_crispies/version.rb
|
100
|
+
- spec/attribute_spec.rb
|
101
|
+
- spec/base_spec.rb
|
102
|
+
- spec/collection_spec.rb
|
103
|
+
- spec/condition_spec.rb
|
104
|
+
- spec/controller_spec.rb
|
105
|
+
- spec/fixtures/test_serializer.rb
|
106
|
+
- spec/hash_builder_spec.rb
|
107
|
+
- spec/memoizer_spec.rb
|
108
|
+
- spec/plan_spec.rb
|
109
|
+
- spec/spec_helper.rb
|
110
|
+
homepage: https://github.com/codenoble/cache-crispies
|
111
|
+
licenses:
|
112
|
+
- MIT
|
113
|
+
metadata: {}
|
114
|
+
post_install_message:
|
115
|
+
rdoc_options: []
|
116
|
+
require_paths:
|
117
|
+
- lib
|
118
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
128
|
+
requirements: []
|
129
|
+
rubygems_version: 3.0.3
|
130
|
+
signing_key:
|
131
|
+
specification_version: 4
|
132
|
+
summary: Fast Rails serializer with built-in caching
|
133
|
+
test_files:
|
134
|
+
- spec/attribute_spec.rb
|
135
|
+
- spec/base_spec.rb
|
136
|
+
- spec/collection_spec.rb
|
137
|
+
- spec/condition_spec.rb
|
138
|
+
- spec/controller_spec.rb
|
139
|
+
- spec/fixtures/test_serializer.rb
|
140
|
+
- spec/hash_builder_spec.rb
|
141
|
+
- spec/memoizer_spec.rb
|
142
|
+
- spec/plan_spec.rb
|
143
|
+
- spec/spec_helper.rb
|