k_fileset 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/bin/khotfix ADDED
@@ -0,0 +1,244 @@
1
+ #!/usr/bin/env bash
2
+
3
+ #NOTE: you may need change file permissions
4
+ # chmod +x bin/khotfix
5
+
6
+ # Create a Versioned HotFix in Git and update the VERSION #
7
+ # USAGE
8
+ #
9
+ # ./bin/khotfix.sh 'my brand new hot fix'
10
+
11
+ # HELPERS
12
+ clear
13
+
14
+ l_heading ()
15
+ {
16
+ heading=$1
17
+
18
+ echo "======================================================================"
19
+ echo "${heading}"
20
+ echo "======================================================================"
21
+ }
22
+
23
+ l_line ()
24
+ {
25
+ echo "----------------------------------------------------------------------"
26
+ }
27
+
28
+ l_title ()
29
+ {
30
+ title=$1
31
+
32
+ l_line
33
+ echo "${title}"
34
+ l_line
35
+ }
36
+
37
+ l ()
38
+ {
39
+ title=$1
40
+
41
+ echo "${title}"
42
+ }
43
+
44
+ lkv ()
45
+ {
46
+ title=$1
47
+ value=$2
48
+
49
+ printf "%-25s : %s\n" "$title" "$value"
50
+ }
51
+
52
+
53
+ # expect 1 argument
54
+ MESSAGE=$1
55
+
56
+ l_heading "Make Hotfix - '${MESSAGE}'"
57
+
58
+
59
+ # This environment var will prevent git from asking for merge messages
60
+ export GIT_MERGE_AUTOEDIT=no
61
+
62
+ # Set up colour support, if we have it
63
+ # Are stdout and stderr both connected to a terminal, If not then don't set colours
64
+ if [ -t 1 -a -t 2 ]
65
+ then
66
+ if tput -V >/dev/null 2>&1
67
+ then
68
+ C_RED=`tput setaf 1`
69
+ C_GREEN=`tput setaf 2`
70
+ C_BROWN=`tput setaf 3`
71
+ C_BLUE=`tput setaf 4`
72
+ C_RESET=`tput sgr0`
73
+ fi
74
+ fi
75
+
76
+
77
+ exit_error ()
78
+ {
79
+ # dont display if string is zero length
80
+ [ -z "$1" ] || echo "${C_RED}Error: ${C_BROWN} $1 ${C_RESET}"
81
+ exit 1
82
+ }
83
+
84
+
85
+ # check arguments
86
+ [ ! -z "${MESSAGE}" ] || exit_error "You must pass a message when making a hotfix"
87
+
88
+ # make sure we are in a git tree
89
+ [ "`git rev-parse --is-inside-work-tree`" = "true" ] || exit_error "NOT a git repository"
90
+ l "Repository check OK"
91
+
92
+ CURRENT_BRANCH=`git branch | awk '/^\*/{print $2}'`
93
+
94
+ lkv "CURRENT_BRANCH" "${CURRENT_BRANCH}"
95
+
96
+ # check that we are on develop or master
97
+ [ "${CURRENT_BRANCH}" = "master" -o "${CURRENT_BRANCH}" = "develop" ] || exit_error "You MUST be on either the master or development branch"
98
+ l "OK: Branch"
99
+
100
+ # check that the current branch is NOT clean (we need changes to make a hotfix)
101
+ [ ! -z "`git status --porcelain`" ] || exit_error "Working copy is clean - no hotfix"
102
+ l "OK: Working copy has hotfix ready"
103
+
104
+ # fetch from origin
105
+ git fetch origin || exit_error "Failed to fetch from origin"
106
+ l "OK: Fsetch from origin"
107
+
108
+ # get the current directory that this script is in.
109
+ # we assume that the other scripts are in the same directory
110
+ SYNC_SCRIPT=kgitsync
111
+ SCRIPT_DIR=`dirname $0`
112
+
113
+ # ----------------------------------------------------------------------
114
+ # GET VERSION NUMBER
115
+ # ----------------------------------------------------------------------
116
+
117
+ l_title 'GET VERSION NUMBER'
118
+
119
+ # Get the last tag version
120
+ VERSION=`git tag | sort -V | tail -1`
121
+ lkv "CURENT VERSION" "${VERSION}"
122
+
123
+ # NOTE, if you don't have a TAG then you might need to manually do
124
+ # git flow hotfix start v0.01.001
125
+ # git flow hotfix finish v0.01.001
126
+
127
+ # Verify its format
128
+ [[ "`git tag | sort -V | tail -1`" =~ ^v[0-9]{1,2}.[0-9]{1,2}.[0-9]{1,3}$ ]] || exit_error "Bad version format, version=${VERSION}"
129
+ # extract the version components
130
+ IFS=. read MAJOR_VERSION MINOR_VERSION PATCH_VERSION <<< "${VERSION}"
131
+
132
+ # inc the patch version. note: force base 10 as leading 0 makes bash think this is octal
133
+ PATCH_VERSION=$((10#${PATCH_VERSION} + 1))
134
+ lkv 'Patch #' "${PATCH_VERSION}"
135
+
136
+ # assemble the new version
137
+ NEW_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}"
138
+ lkv "NEW VERSION" "${NEW_VERSION}"
139
+
140
+ ./hooks/update-version "${NEW_VERSION}" || exit_error "could not update version.rb you may need to run [chmod +x hooks/update-version]"
141
+
142
+ l_line
143
+ l 'git add .'
144
+ git add .
145
+
146
+ l 'git status'
147
+ l_line
148
+ git status
149
+
150
+ # ----------------------------------------------------------------------
151
+ # Before doing anything, add the files and then run the commit hook
152
+ # Then stash any changes - working directory will be clean after this
153
+ # The commit hook is where we can check for any debugging code that has
154
+ # gone into the code and abort the commit
155
+ # ----------------------------------------------------------------------
156
+
157
+ l 'check for debugging code'
158
+ ./hooks/pre-commit || exit_error "remove debugging code from the commit - then run again"
159
+
160
+ l "Stash changes to [git_make_hotfix: ${MESSAGE}]"
161
+
162
+ git stash save "git_make_hotfix: ${MESSAGE}"
163
+
164
+ l "OK: Stashed"
165
+
166
+ l_title 'Master/Develop Branches'
167
+ # ----------------------------------------------------------------------
168
+ # update develop
169
+ # ----------------------------------------------------------------------
170
+
171
+ lkv "Develop" "Synchronized"
172
+ git checkout develop || exit_error "Failed to checkout develop branch"
173
+ lkv "Develop" "Switched"
174
+ git merge origin/develop || exit_error "Failed to merge develop from origin"
175
+ lkv "Develop" "Merged and upto date"
176
+
177
+ # ----------------------------------------------------------------------
178
+ # update master
179
+ # ----------------------------------------------------------------------
180
+
181
+ lkv "Master" "Synchronized"
182
+ git checkout master || exit_error "Failed to checkout master branch"
183
+ lkv "Master" "Switched"
184
+ git merge origin/master || exit_error "Failed to merge master from origin"
185
+ lkv "Master" "Merged and upto date"
186
+
187
+ # ----------------------------------------------------------------------
188
+ # start the hotfix
189
+ # ----------------------------------------------------------------------
190
+
191
+ l_title 'Hotfix'
192
+
193
+ lkv "Version" "${NEW_VERSION}"
194
+
195
+
196
+
197
+ lkv "git flow hotfix start" "${NEW_VERSION}"
198
+
199
+ git flow hotfix start "${NEW_VERSION}" || exit_error "Failed to start hotfix ${NEW_VERSION}"
200
+
201
+ HOTFIX_BRANCH="hotfix/${NEW_VERSION}"
202
+
203
+ lkv "started" "${HOTFIX_BRANCH}"
204
+
205
+ # ----------------------------------------------------------------------
206
+ # commit the stashed changes
207
+ # ----------------------------------------------------------------------
208
+
209
+ lkv "git stash" "pop"
210
+
211
+ git stash pop || exit_error "Failed to pop the stash into the hotfix"
212
+
213
+ lkv "git commit" "${MESSAGE}"
214
+
215
+ git commit -a -m"${MESSAGE}" || exit_error "Failed to commit the stash to ${HOTFIX_BRANCH}"
216
+
217
+ lkv "git commit succesful" "${HOTFIX_BRANCH}"
218
+
219
+ # ----------------------------------------------------------------------
220
+ # close the hotfix
221
+ # ----------------------------------------------------------------------
222
+
223
+ lkv "git flow hotfix finish" "${NEW_VERSION}"
224
+
225
+ git flow hotfix finish "${NEW_VERSION}" -m"${MESSAGE}" || exit_error "Failed to close ${HOTFIX_BRANCH}"
226
+
227
+ lkv "finished" "${HOTFIX_BRANCH}"
228
+
229
+ # closing the hotfix leaves you on the development branch
230
+ # return to the master ???? or should we stay on development
231
+
232
+ lkv "git checkout" "master"
233
+
234
+ git checkout master || exit_error "Failed to return to master branch"
235
+
236
+ # ----------------------------------------------------------------------
237
+ # now push the changes
238
+ # ----------------------------------------------------------------------
239
+
240
+ l_title 'Push Changes and Synchronize Master/Develop'
241
+
242
+ ${SCRIPT_DIR}/${SYNC_SCRIPT}
243
+
244
+ l_heading 'Success'
data/bin/setup ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # frozen_string_literal: true
4
+
5
+ set -euo pipefail
6
+ IFS=$'\n\t'
7
+ set -vx
8
+
9
+ bundle install
10
+
11
+ # Do any other automated setup that you need to do here
data/hooks/pre-commit ADDED
@@ -0,0 +1,87 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'English'
5
+
6
+ # NOTE: you may need change file permissions
7
+ # chmod +x hooks/pre-commit
8
+
9
+ exit 0 if ARGV.include?('--no-verify')
10
+
11
+ warning_keywords = %w[console.log]
12
+ keywords = %w[binding.pry console.dir byebug debugger]
13
+ files_changed = `git diff-index --name-only HEAD --`.split
14
+
15
+ # puts '----------------------------------------------------------------------'
16
+ # puts remove files changed from the pre-commit checking if they are one of the following files
17
+ # puts '----------------------------------------------------------------------'
18
+ # files_changed = files_changed - ['hooks/pre-commit']
19
+ # files_changed = files_changed - ['hooks/update-version']
20
+
21
+ # byebug may need to be in these files
22
+ files_changed -= ['Gemfile']
23
+ files_changed -= ['Gemfile.lock']
24
+ files_changed -= ['.gitignore']
25
+ files_changed -= ['README.md']
26
+
27
+ files_changed = files_changed.reject { |f| f.downcase.end_with?('.json') }
28
+ files_changed = files_changed.reject { |f| f.downcase.end_with?('.yml') }
29
+
30
+ # ignore files from specific folders
31
+
32
+ file_groups = files_changed.select do |item|
33
+ item.start_with?('hooks') # ||
34
+ # item.start_with?('lib/generators')
35
+ end
36
+
37
+ files_changed -= file_groups
38
+
39
+ # remove files that are changed because they are deleted
40
+ files_changed = files_changed.select { |filename| File.file?(filename) }
41
+
42
+ # puts '----------------------------------------------------------------------'
43
+ # puts 'Files Changed'
44
+ # puts '----------------------------------------------------------------------'
45
+ # puts files_changed
46
+ # puts '----------------------------------------------------------------------'
47
+
48
+ unless files_changed.length.zero?
49
+ # puts "#{keywords.join('|')}"
50
+ # puts "#{files_changed.join(' ')}"
51
+
52
+ `git grep -q -E "#{warning_keywords.join('|')}" #{files_changed.join(' ')}`
53
+
54
+ if $CHILD_STATUS.exitstatus.zero?
55
+ puts '' # Check following lines:''
56
+ puts $CHILD_STATUS.exitstatus
57
+ files_changed.each do |file|
58
+ warning_keywords.each do |keyword|
59
+ # puts "#{keyword} ::: #{file}"
60
+ `git grep -q -E #{keyword} #{file}`
61
+ if $CHILD_STATUS.exitstatus.zero?
62
+ line = `git grep -n #{keyword} #{file} | awk -F ":" '{print $2}'`.split.join(', ')
63
+ puts "WARNING:\t\033[31m#{file}\033[0m contains #{keyword} at line \033[33m#{line}\033[0m."
64
+ end
65
+ end
66
+ end
67
+ end
68
+
69
+ `git grep -q -E "#{keywords.join('|')}" #{files_changed.join(' ')}`
70
+
71
+ if $CHILD_STATUS.exitstatus.zero?
72
+ puts '' # Check following lines:''
73
+ puts $CHILD_STATUS.exitstatus
74
+ files_changed.each do |file|
75
+ keywords.each do |keyword|
76
+ # puts "#{keyword} ::: #{file}"
77
+ `git grep -q -E #{keyword} #{file}`
78
+ if $CHILD_STATUS.exitstatus.zero?
79
+ line = `git grep -n #{keyword} #{file} | awk -F ":" '{print $2}'`.split.join(', ')
80
+ puts "ERROR :\t\033[31m#{file}\033[0m contains #{keyword} at line \033[33m#{line}\033[0m."
81
+ end
82
+ end
83
+ end
84
+ puts '# Force commit with --no-verify'
85
+ exit 1
86
+ end
87
+ end
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ # NOTE: you may need change file permissions
5
+ # chmod +x hooks/update-version
6
+
7
+ exit 1 if ARGV.empty?
8
+
9
+ version = ARGV[0]
10
+ version = version[1..-1] # revoke 'v' character, e.g. v0.1.1 becomes 0.1.1
11
+
12
+ namespaces = %w[KFileset]
13
+
14
+ indent = 0
15
+ output = ['# frozen_string_literal: true', '']
16
+
17
+ namespaces.each do |namespace|
18
+ output.push "#{' ' * indent}module #{namespace}"
19
+ indent += 1
20
+ end
21
+
22
+ output.push "#{' ' * indent}VERSION = \'#{version}'"
23
+ indent -= 1
24
+
25
+ namespaces.each do
26
+ output.push "#{' ' * indent}end"
27
+ indent -= 1
28
+ end
29
+
30
+ output.push('')
31
+
32
+ printf "%-25<label>s : %<version>s\n", label: 'GEM VERSION', version: version
33
+ File.open('lib/k_fileset/version.rb', 'w+') { |f| f.write(output.join("\n")) }
data/k_fileset.gemspec ADDED
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/k_fileset/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.required_ruby_version = '>= 2.5'
7
+ spec.name = 'k_fileset'
8
+ spec.version = KFileset::VERSION
9
+ spec.authors = ['David Cruwys']
10
+ spec.email = ['david@ideasmen.com.au']
11
+
12
+ spec.summary = 'K-Fileset provides file system snapshot using GLOB inclusions and exclusions'
13
+ spec.description = <<-TEXT
14
+ K-Fileset provides file system snapshot using GLOB inclusions and exclusions
15
+ TEXT
16
+ spec.homepage = 'http://appydave.com/gems/k-fileset'
17
+ spec.license = 'MIT'
18
+
19
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
20
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
21
+ raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless spec.respond_to?(:metadata)
22
+
23
+ # spec.metadata['allowed_push_host'] = "Set to 'http://mygemserver.com'"
24
+
25
+ spec.metadata['homepage_uri'] = spec.homepage
26
+ spec.metadata['source_code_uri'] = 'https://github.com/klueless-io/k_fileset'
27
+ spec.metadata['changelog_uri'] = 'https://github.com/klueless-io/k_fileset/commits/master'
28
+
29
+ # Specify which files should be added to the gem when it is released.
30
+ # The `git ls-files -z` loads the RubyGem files that have been added into git.
31
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
32
+ `git ls-files -z`.split("\x0").reject do |f|
33
+ f.match(%r{^(test|spec|features)/})
34
+ end
35
+ end
36
+ spec.bindir = 'exe'
37
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
38
+ spec.require_paths = ['lib']
39
+ # spec.extensions = ['ext/k_fileset/extconf.rb']
40
+
41
+ spec.add_dependency 'k_log' , '~> 0.0.0'
42
+ # spec.add_dependency 'k_type' , '~> 0.0.0'
43
+ # spec.add_dependency 'k_util' , '~> 0.0.0'
44
+ end
@@ -0,0 +1,195 @@
1
+ # frozen_string_literal: true
2
+
3
+ module KFileset
4
+ # FileSet will build up a list of files and/or folders that match a whitelist.
5
+ #
6
+ # Path <PathEntry> will point to a real file or folder
7
+ #
8
+ # That list of files can be filtered using exclusions that
9
+ # follow either Glob or Regex patterns.
10
+ #
11
+ # Resources:
12
+ # - Rake-FileList: https://github.dev/ruby/rake/blob/5c60da8644a9e4f655e819252e3b6ca77f42b7af/lib/rake/file_list.rb
13
+ # - Glob vs Regex: https://www.linuxjournal.com/content/globbing-and-regex-so-similar-so-different
14
+ # - Glob patterns: http://web.mit.edu/racket_v612/amd64_ubuntu1404/racket/doc/file/glob.html
15
+ # require 'rake/file_list'
16
+ # Rake::FileList['**/*'].exclude(*File.read('.gitignore').split)
17
+ class FileSet
18
+ DEF_FLAGS = File::FNM_PATHNAME | File::FNM_EXTGLOB
19
+ DEF_FLAGS_DOTMATCH = File::FNM_PATHNAME | File::FNM_EXTGLOB | File::FNM_DOTMATCH
20
+
21
+ DEFAULT_IGNORE_PATTERNS = [
22
+ %r{(^|[/\\])CVS([/\\]|$)},
23
+ %r{(^|[/\\])\.svn([/\\]|$)},
24
+ /\.bak$/,
25
+ /~$/
26
+ ].freeze
27
+
28
+ IGNORE_LAMBDAS = {
29
+ # Match Examples: 'target/deep/a', 'target/deep/a/.', 'target/deep/a/b', 'target/deep/a/b/.'
30
+ folder: ->(path) { File.directory?(path) },
31
+
32
+ # Match Examples: 'target/deep/a', 'target/deep/a/b'
33
+ folder_current: ->(path) { File.directory?(path) && !path.end_with?('.') },
34
+
35
+ # Match Examples: 'target/deep/a/.', 'target/deep/a/b/.'
36
+ folder_current_dot: ->(path) { File.directory?(path) && path.end_with?('.') }
37
+ }.freeze
38
+
39
+ # proc { |fn| fn =~ /(^|[\/\\])core$/ && !File.directory?(fn) }
40
+ DEFAULT_IGNORE_LAMBDAS = [
41
+ IGNORE_LAMBDAS[:folder]
42
+ ].freeze
43
+
44
+ # Expression to detect standard file GLOB pattern
45
+ GLOB_PATTERN = /[*?\[{]/.freeze
46
+
47
+ attr_writer :file_set # paths / resources / path_entries / valid_resources
48
+ attr_reader :whitelist # whitelist (rules)
49
+
50
+ # FileSet will build up a list of files and/or folders that match a whitelist.
51
+
52
+ # attr_writer :items # paths / resources / path_entries / valid_resources
53
+ # attr_writer :paths # paths / resources / path_entries / valid_resources
54
+ # attr_writer :entries # paths / resources / path_entries / valid_resources
55
+ # attr_writer :path_entries # paths / resources / path_entries / valid_resources
56
+ # attr_writer :resource # paths / resources / path_entries / valid_resources
57
+
58
+ # attr_reader :whitelist_rules # whitelist (rules)
59
+ # attr_reader :whitelist_files # whitelist (rules)
60
+
61
+ def initialize
62
+ @dirty = false
63
+ @whitelist = KFileset::Whitelist.new
64
+ @file_set = {}
65
+ end
66
+
67
+ # Add a Glob with option exclusions to the whitelist
68
+ #
69
+ # @param [String] glob Any Bourne/Bash shell Glob pattern is acceptable
70
+ # @param [String|Regex|Array] exclude Glob Pattern or Regexp or Array of patterns to exclude.
71
+ # @param [String] exclude Glob Pattern
72
+ # @param [RegExp] exclude Regular expression
73
+ # @param [Array<String, Regex>] exclude List of Glob patterns or Regular expressions
74
+ def glob(glob, exclude: nil, flags: DEF_FLAGS, use_defaults: true)
75
+ exclude = add_default_exclusions(exclude, use_defaults)
76
+ @whitelist.add(glob, exclude, flags)
77
+ @dirty = true
78
+
79
+ self
80
+ end
81
+
82
+ # Add absolute file
83
+ def add(path)
84
+ path = Pathname.new(path).realpath
85
+ return if file_set.key?(path)
86
+ return unless whitelist.match?(file)
87
+
88
+ file_set.add(file)
89
+ end
90
+
91
+ def clear
92
+ @dirty = true
93
+ @file_set.clear
94
+ @whitelist.clear
95
+ end
96
+
97
+ def length
98
+ file_set.length
99
+ end
100
+
101
+ # def valid?(file)
102
+ # return true if files.include?(file)
103
+
104
+ # if new_file_match?(file)
105
+ # @file_set.add(file)
106
+ # return true
107
+ # end
108
+
109
+ # false
110
+ # end
111
+
112
+ def path_entries
113
+ @path_entries ||= file_set.values.sort_by(&:key)
114
+ end
115
+
116
+ def relative_paths
117
+ path_entries.map(&:to_path) # relative_path }
118
+ end
119
+
120
+ def absolute_paths
121
+ path_entries.map { |entry| entry.realpath.to_s }
122
+ end
123
+
124
+ def pwd
125
+ Dir.pwd
126
+ end
127
+
128
+ def remove(path)
129
+ path = abs_path(path)
130
+ file_set.delete(path)
131
+ end
132
+
133
+ def debug
134
+ path_entries.each(&:debug)
135
+ end
136
+
137
+ private
138
+
139
+ def abs_path(path)
140
+ Pathname.new(path).realpath.to_s
141
+ end
142
+
143
+ # renamed to path_entries | .paths
144
+ def file_set
145
+ return @file_set unless @dirty
146
+
147
+ @dirty = false
148
+ whitelist.path_entries.each do |path_entry|
149
+ # puts path_entry.class
150
+ # puts path_entry.key.class
151
+ # puts path_entry.key
152
+ @file_set[path_entry.key] = path_entry
153
+ end
154
+ @file_set
155
+ # @file_set = @file_set.merge()
156
+ end
157
+
158
+ def add_default_exclusions(exclude, use_defaults)
159
+ result = []
160
+
161
+ result += DEFAULT_IGNORE_PATTERNS if use_defaults
162
+ result += DEFAULT_IGNORE_LAMBDAS if use_defaults
163
+
164
+ return result unless exclude
165
+ return result + exclude if exclude.is_a?(Array)
166
+
167
+ result << exclude
168
+
169
+ result
170
+ end
171
+
172
+ # def new_file_match?(file)
173
+ # whitelist.any? { |white_entry| white_entry.match?(file) }
174
+ # end
175
+
176
+ # def exclude_files(glob, exclude = nil)
177
+ # get_files = Dir[glob]
178
+
179
+ # return get_files unless exclude
180
+
181
+ # return get_files.reject { |file| exclude.any? { |pattern| pattern_match?(pattern, file) } } if exclude.is_a?(Array)
182
+
183
+ # get_files.reject { |file| pattern_match?(exclude, file) }
184
+ # end
185
+
186
+ # def pattern_match?(pattern, file)
187
+ # return pattern.match?(file) if pattern.is_a?(Regexp)
188
+
189
+ # # Guard
190
+ # return false unless pattern.is_a?(String)
191
+
192
+ # File.fnmatch?(pattern, file) # As String
193
+ # end
194
+ end
195
+ end
@@ -0,0 +1,64 @@
1
+ # frozen_string_literal: true
2
+
3
+ module KFileset
4
+ # FileSet will build up a list of files using Glob patterns.
5
+ #
6
+ # That list of files can be filtered using exclusions that
7
+ # follow either Glob or Regex patterns.
8
+ #
9
+ # Keeping track of excluded patterns is useful in KFileset because an existing file may be
10
+ # or a new file added and a file watcher my attempt to process that file. The exclusion patterns
11
+ # provide a way to ignore the file.
12
+ #
13
+ # FileSet uses some code from Rake-FileList, but uses the builder pattern to build up a
14
+ # list of included files and inclusion/exclusion patterns instead of the Array emulation that rake uses.
15
+ # https://github.com/ruby/rake/blob/master/lib/rake/file_list.rb
16
+ #
17
+ # Usage:
18
+ # Assumes that the current directory is /some_path/k_manager
19
+ EXAMPLE = <<~RUBY
20
+ #{' '}
21
+ # /Dir.glob('(david|sean|lisa)')
22
+ # /Users/davidcruwys/dev/kgems/k_manager
23
+ # .cd('/Users/davidcruwys/dev/kgems/k_manager')
24
+ #{' '}
25
+ Watcher.process_file(file, event) do
26
+ file = '/Users/davidcruwys/dev/kgems/k_manager/spec/samples/.builder/a/b/c/d/e/bob.png'
27
+ file = '/Users/davidcruwys/dev/kgems/k_manager/spec/samples/.builder/a/b/c/d/e/bob.rb'
28
+ #{' '}
29
+ case
30
+ when event :updated
31
+ if file_set.valid?(file)
32
+ continue_processing(file)
33
+ end
34
+ #{' '}
35
+ when event :deleted
36
+ file_set.remove(file)
37
+ end
38
+ end
39
+ #{' '}
40
+ whitelist = [
41
+ WhiteListEntry.new(
42
+ '/Users/davidcruwys/dev/kgems/k_manager/spec/samples/.builders/**/*',
43
+ [/(sean|david).txt/, /\*.xlsx?/, /\*.(jpe?g|png|gif)/]
44
+ ),
45
+ WhiteListEntry.new(
46
+ '/Users/davidcruwys/dev/kgems/k_manager/spec/.templates/**/*',
47
+ /bob.(jpe?g|png|gif|rb)/
48
+ )
49
+ ]
50
+ #{' '}
51
+ #{' '}
52
+ file_set = KFileset::FileSet.new
53
+ .cd('spec/samples') # /Users/davidcruwys/dev/kgems/k_manager/spec/samples
54
+ .add('.builder/**/*')
55
+ .add('.builder/**/*', exclude: '*.txt') # /Users/davidcruwys/dev/kgems/k_manager/spec/samples/.builders/**/*
56
+ .add('.builder/**/*', exclude: /\.txt/)
57
+ .add('.builder/**/*', exclude: [
58
+ /(sean|david).txt/,
59
+ /\*.xlsx?/,
60
+ /\*.(jpe?g|png|gif)/
61
+ ])
62
+ .add('../.templates/**/*', exclude: /bob.(jpe?g|png|gif|rb)/) # /Users/davidcruwys/dev/kgems/k_manager/spec/.templates/**/*
63
+ RUBY
64
+ end