cache_be_gone 0.1.0.pre.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2ce2d41e8e23f02b597c0e2edc77de3cae03a65723288b8aa26fea3d14fd4e2a
4
+ data.tar.gz: fa84de5e5a33ea29002a6405b9d39e5f13210e00b866a9cf101bf4b3231b01a5
5
+ SHA512:
6
+ metadata.gz: 3e532301caba41d224952ff418ef99fcc65a4ed29f4f84f5a1f1bc904837cb5667df61c8dc545db86d0ac7510c804da6f6f3a908386aef787c77f323dc688a30
7
+ data.tar.gz: 1e7edc2fd807ad9ed6315a41cf96464fbdae080b57f928a7abfce3de78dd3563c8c3b590efedb7d3326f6ad8bece642ce58f121d1b3d7485e2e98766c77e8035
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2020 rene paulokat
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # CacheBeGone
2
+
3
+ Simple Rails engine that provides controller, route and helper to ease administrative cache deletion.
4
+
5
+
6
+ ## Usage
7
+
8
+ use only if cache_store == file_store
9
+
10
+ to add an action button on your template at any place:
11
+
12
+ ```
13
+ <%= cache_be_gone %>
14
+ ```
15
+
16
+ ## Installation
17
+ Add this line to your rails (>=5) application's Gemfile:
18
+
19
+ ```ruby
20
+ gem 'cache_be_gone'
21
+ ```
22
+
23
+ And then execute:
24
+ ```bash
25
+ $ bundle
26
+ ```
27
+
28
+ Or install it yourself as:
29
+ ```bash
30
+ $ gem install cache_be_gone
31
+ ```
32
+
33
+ ## License
34
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,32 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'CacheBeGone'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+ load 'rails/tasks/statistics.rake'
21
+
22
+ require 'bundler/gem_tasks'
23
+
24
+ require 'rake/testtask'
25
+
26
+ Rake::TestTask.new(:test) do |t|
27
+ t.libs << 'test'
28
+ t.pattern = 'test/**/*_test.rb'
29
+ t.verbose = false
30
+ end
31
+
32
+ task default: :test
@@ -0,0 +1,8 @@
1
+ class CacheSweeperController < ApplicationController
2
+ def clean
3
+ logger.debug('sweeping the cache')
4
+ Rails.cache.clear
5
+ flash.notice = 'Cache cleaned'
6
+ redirect_back(fallback_location: '/')
7
+ end
8
+ end
@@ -0,0 +1,6 @@
1
+ module CacheSweeperHelper
2
+ def cache_be_gone(css_class=nil)
3
+ css_class ||= 'btn btn-danger'
4
+ link_to "Sweep Cache", cache_be_gone_url, class: css_class
5
+ end
6
+ end
data/config/routes.rb ADDED
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ get 'cache_sweeper/clean', as: :cache_be_gone
3
+ end
@@ -0,0 +1,4 @@
1
+ module CacheBeGone
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module CacheBeGone
2
+ VERSION = '0.1.0-8'
3
+ end
@@ -0,0 +1,5 @@
1
+ require "cache_be_gone/engine"
2
+
3
+ module CacheBeGone
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :cache_be_gone do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cache_be_gone
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.pre.8
5
+ platform: ruby
6
+ authors:
7
+ - rene paulokat
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-05-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Facilitates sweeping the cache by the click of a button
42
+ email:
43
+ - rene@so36.net
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - MIT-LICENSE
49
+ - README.md
50
+ - Rakefile
51
+ - app/controllers/cache_sweeper_controller.rb
52
+ - app/helpers/cache_sweeper_helper.rb
53
+ - config/routes.rb
54
+ - lib/cache_be_gone.rb
55
+ - lib/cache_be_gone/engine.rb
56
+ - lib/cache_be_gone/version.rb
57
+ - lib/tasks/cache_be_gone_tasks.rake
58
+ homepage: https://github.com/erpe/cache_be_gone
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">"
74
+ - !ruby/object:Gem::Version
75
+ version: 1.3.1
76
+ requirements: []
77
+ rubygems_version: 3.0.6
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: Facilitates sweeping the cache
81
+ test_files: []