ehbrs-tools 0.16.3 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/lib/ehbrs/cooking_book.rb +9 -0
  3. data/lib/ehbrs/cooking_book/build.rb +45 -0
  4. data/lib/ehbrs/cooking_book/build/base_page.rb +43 -0
  5. data/lib/ehbrs/cooking_book/build/index_page.rb +26 -0
  6. data/lib/ehbrs/cooking_book/build/recipe_page.rb +27 -0
  7. data/lib/ehbrs/cooking_book/project.rb +25 -0
  8. data/lib/ehbrs/cooking_book/recipe.rb +37 -0
  9. data/lib/ehbrs/cooking_book/recipe/ingredient.rb +21 -0
  10. data/lib/ehbrs/cooking_book/recipe/measure.rb +60 -0
  11. data/lib/ehbrs/cooking_book/recipe/part.rb +32 -0
  12. data/lib/ehbrs/patches/module/erb_template.rb +11 -0
  13. data/lib/ehbrs/patches/object/erb_template.rb +9 -0
  14. data/lib/ehbrs/patches/object/template.rb +7 -0
  15. data/lib/ehbrs/runner.rb +6 -13
  16. data/lib/ehbrs/runner/cooking_book.rb +30 -0
  17. data/lib/ehbrs/runner/cooking_book/build.rb +32 -0
  18. data/lib/ehbrs/runner/telegram.rb +26 -0
  19. data/lib/ehbrs/runner/telegram/send_message.rb +29 -0
  20. data/lib/ehbrs/runner/videos/unsupported.rb +1 -1
  21. data/lib/ehbrs/telegram.rb +9 -0
  22. data/lib/ehbrs/telegram/message_sending.rb +32 -0
  23. data/lib/ehbrs/tools/application.rb +13 -0
  24. data/lib/ehbrs/tools/instance.rb +16 -0
  25. data/lib/ehbrs/tools/version.rb +1 -1
  26. data/lib/ehbrs/videos/track.rb +1 -19
  27. data/lib/ehbrs/videos/unsupported/check_support.rb +1 -1
  28. data/lib/ehbrs/videos/unsupported/checks/codec_extra_unlisted.rb +1 -1
  29. data/lib/ehbrs/videos/unsupported/checks/codec_extra_unsupported.rb +1 -1
  30. data/lib/ehbrs/videos/unsupported/checks/codec_unlisted.rb +2 -2
  31. data/lib/ehbrs/videos/unsupported/checks/codec_unsupported.rb +1 -1
  32. data/lib/ehbrs/videos/unsupported/fix_profile.rb +0 -13
  33. data/lib/ehbrs/videos/unsupported/fixes/supported_codec.rb +10 -10
  34. data/lib/ehbrs/videos/unsupported/profiles/aoc.rb +27 -0
  35. data/template/ehbrs/cooking_book/build/base_page/layout.html.erb +20 -0
  36. data/template/ehbrs/cooking_book/build/index_page/inner.html.erb +6 -0
  37. data/template/ehbrs/cooking_book/build/recipe_page/inner.html.erb +6 -0
  38. data/template/ehbrs/cooking_book/build/recipe_page/part.html.erb +27 -0
  39. data/vendor/eac_cli/lib/eac_cli/docopt/runner_context_replacement.rb +15 -0
  40. data/vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb +5 -0
  41. data/vendor/eac_cli/lib/eac_cli/parser/alternative.rb +4 -4
  42. data/vendor/eac_cli/lib/eac_cli/parser/alternative/long_options.rb +37 -0
  43. data/vendor/eac_cli/lib/eac_cli/parser/alternative/option_argument.rb +29 -0
  44. data/vendor/eac_cli/lib/eac_cli/parser/alternative/options.rb +7 -36
  45. data/vendor/eac_cli/lib/eac_cli/parser/alternative/short_options.rb +45 -0
  46. data/vendor/eac_cli/lib/eac_cli/runner_with/help.rb +3 -1
  47. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +19 -2
  48. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  49. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +22 -1
  50. data/vendor/eac_cli/spec/lib/eac_cli/runner_with/subcommands_spec.rb +29 -0
  51. data/vendor/eac_ruby_base0/Gemfile +5 -0
  52. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +20 -0
  53. data/vendor/eac_ruby_base0/lib/eac_ruby_base0.rb +7 -0
  54. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +69 -0
  55. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +54 -0
  56. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner/test_all.rb +22 -0
  57. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +5 -0
  58. data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +7 -0
  59. data/vendor/eac_ruby_base0/spec/spec_helper.rb +100 -0
  60. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_concern/module_setup.rb +16 -6
  61. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor.rb +2 -99
  62. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/class_initialize.rb +29 -0
  63. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/instance_initialize.rb +53 -0
  64. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/super_args.rb +54 -0
  65. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_subcommands.rb +10 -1
  66. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/fs/traverser.rb +0 -2
  67. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/inflector.rb +4 -1
  68. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/local_time_zone.rb +38 -0
  69. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel.rb +4 -0
  70. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel/nyi.rb +8 -0
  71. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/template.rb +10 -0
  72. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/template.rb +1 -8
  73. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/pathname/basename_sub.rb +2 -2
  74. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/default_time_zone_set.rb +3 -2
  75. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  76. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/yaml.rb +8 -0
  77. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/common_concern_spec.rb +14 -4
  78. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/common_constructor_spec.rb +30 -0
  79. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/inflector_spec.rb +2 -1
  80. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/local_time_zone_spec.rb +17 -0
  81. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/version.rb +1 -1
  82. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/stream.rb +1 -1
  83. metadata +89 -9
  84. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/local_time_zone.rb +0 -25
@@ -57,8 +57,6 @@ module EacRubyUtils
57
57
  user_check_file(path)
58
58
  elsif path.directory?
59
59
  inner_check_directory(path, level)
60
- else
61
- raise "Unknown filesystem object: #{path}"
62
60
  end
63
61
  end
64
62
 
@@ -1,12 +1,15 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'active_support/inflector'
4
+
3
5
  module EacRubyUtils
4
6
  class Inflector
5
7
  class << self
6
8
  VARIABLE_NAME_PATTERN = /[_a-z][_a-z0-9]*/i.freeze
7
9
 
8
10
  def variableize(string)
9
- r = string.gsub(/[^_a-z0-9]/i, '_').gsub(/_+/, '_').gsub(/_\z/, '').gsub(/\A_/, '').downcase
11
+ r = ::ActiveSupport::Inflector.transliterate(string).gsub(/[^_a-z0-9]/i, '_')
12
+ .gsub(/_+/, '_').gsub(/_\z/, '').gsub(/\A_/, '').downcase
10
13
  m = VARIABLE_NAME_PATTERN.match(r)
11
14
  return r if m
12
15
 
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/core_ext/object/blank'
4
+ require 'active_support/values/time_zone'
5
+
6
+ module EacRubyUtils
7
+ module LocalTimeZone
8
+ DEBIAN_CONFIG_PATH = '/etc/timezone'
9
+
10
+ class << self
11
+ TIMEDATECTL_TIMEZONE_LINE_PATTERN = %r{\s*Time zone:\s*(\S+/\S+)\s}.freeze
12
+
13
+ def auto
14
+ %w[tz_env debian_config offset].lazy.map { |s| send("by_#{s}") }.find(&:present?)
15
+ end
16
+
17
+ def by_debian_config
18
+ path = ::Pathname.new(DEBIAN_CONFIG_PATH)
19
+ path.exist? ? path.read.strip.presence : nil
20
+ end
21
+
22
+ def by_offset
23
+ ::ActiveSupport::TimeZone[::Time.now.getlocal.gmt_offset].name
24
+ end
25
+
26
+ def by_timedatectl
27
+ executable = ::EacRubyUtils::Envs.local.executable('timedatectl', '--version')
28
+ return nil unless executable.exist?
29
+
30
+ TIMEDATECTL_TIMEZONE_LINE_PATTERN.if_match(executable.command.execute!) { |m| m[1] }
31
+ end
32
+
33
+ def by_tz_env
34
+ ENV['TZ'].presence
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/require_sub'
4
+ ::EacRubyUtils.require_sub(__FILE__)
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kernel
4
+ # Raise exception with text "Not yet implemented".
5
+ def nyi
6
+ raise "Not yet implemented (Called in #{caller.first})"
7
+ end
8
+ end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/core_ext/string/inflections'
4
+ require 'eac_ruby_utils/templates/searcher'
5
+
6
+ class Module
7
+ def template
8
+ @template ||= ::EacRubyUtils::Templates::Searcher.default.template(name.underscore)
9
+ end
10
+ end
@@ -1,15 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'active_support/core_ext/string/inflections'
4
- require 'eac_ruby_utils/templates/searcher'
3
+ require 'eac_ruby_utils/patches/module/template'
5
4
 
6
5
  class Object
7
- class << self
8
- def template
9
- @template ||= ::EacRubyUtils::Templates::Searcher.default.template(name.underscore)
10
- end
11
- end
12
-
13
6
  def template
14
7
  self.class.template
15
8
  end
@@ -3,7 +3,7 @@
3
3
  require 'pathname'
4
4
 
5
5
  class Pathname
6
- def basename_sub
7
- parent.join(yield(basename))
6
+ def basename_sub(suffix = '')
7
+ parent.join(yield(basename(suffix)))
8
8
  end
9
9
  end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/patches/time/local_time_zone'
3
+ require 'active_support/core_ext/time/zones'
4
+ require 'eac_ruby_utils/local_time_zone'
4
5
 
5
- ::Time.zone = ::Time.local_time_zone
6
+ ::Time.zone = ::EacRubyUtils::LocalTimeZone.auto
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyUtils
4
- VERSION = '0.55.0'
4
+ VERSION = '0.58.0'
5
5
  end
@@ -14,10 +14,18 @@ module EacRubyUtils
14
14
  ::YAML.dump(sanitize(object))
15
15
  end
16
16
 
17
+ def dump_file(path, object)
18
+ ::File.write(path.to_s, dump(object))
19
+ end
20
+
17
21
  def load(string)
18
22
  ::YAML.safe_load(string, permitted_classes)
19
23
  end
20
24
 
25
+ def load_file(path)
26
+ load(::File.read(path.to_s))
27
+ end
28
+
21
29
  def permitted_classes
22
30
  DEFAULT_PERMITTED_CLASSES
23
31
  end
@@ -19,7 +19,7 @@ RSpec.describe ::EacRubyUtils::CommonConcern do
19
19
 
20
20
  module InstanceMethods # rubocop:disable RSpec/LeakyConstantDeclaration
21
21
  def my_instance_method
22
- 'instance'
22
+ 'from_module'
23
23
  end
24
24
  end
25
25
  end
@@ -31,8 +31,8 @@ RSpec.describe ::EacRubyUtils::CommonConcern do
31
31
  attr_accessor :valor
32
32
  end
33
33
 
34
- def method1
35
- 'from_stub_module'
34
+ def my_instance_method
35
+ 'from_class'
36
36
  end
37
37
  end
38
38
  end
@@ -48,7 +48,17 @@ RSpec.describe ::EacRubyUtils::CommonConcern do
48
48
  stub_class.include stub_module
49
49
  end
50
50
 
51
- it { expect(stub_class_instance.my_instance_method).to eq('instance') }
51
+ it { expect(stub_class_instance.my_instance_method).to eq('from_class') }
52
+ it { expect(stub_class_instance.class.my_class_method).to eq('class') }
53
+ it { expect(stub_class_instance.class.valor).to eq('changed') }
54
+ end
55
+
56
+ context 'when prepended' do
57
+ before do
58
+ stub_class.prepend stub_module
59
+ end
60
+
61
+ it { expect(stub_class_instance.my_instance_method).to eq('from_module') }
52
62
  it { expect(stub_class_instance.class.my_class_method).to eq('class') }
53
63
  it { expect(stub_class_instance.class.valor).to eq('changed') }
54
64
  end
@@ -92,4 +92,34 @@ RSpec.describe ::EacRubyUtils::CommonConstructor do
92
92
  end
93
93
  end
94
94
  end
95
+
96
+ context 'with class hierarchy mixed with and without common_constructor' do
97
+ let(:klass_0) do
98
+ described_class.new(:a_param).setup_class(::Class.new)
99
+ end
100
+
101
+ let(:klass_1) do
102
+ ::Class.new(klass_0) do
103
+ def initialize(a_param)
104
+ super(a_param)
105
+ end
106
+ end
107
+ end
108
+
109
+ let(:klass_2) do
110
+ ::Class.new(klass_1)
111
+ end
112
+
113
+ let(:klass_3) do
114
+ described_class.new(:a_param).setup_class(::Class.new(klass_2))
115
+ end
116
+
117
+ 4.times.each do |i|
118
+ context "wit #{i}-th class" do
119
+ let(:class_instance) { send("klass_#{i}").new(:a) }
120
+
121
+ it { expect(class_instance.a_param).to eq(:a) }
122
+ end
123
+ end
124
+ end
95
125
  end
@@ -5,7 +5,8 @@ require 'eac_ruby_utils/inflector'
5
5
  RSpec.describe ::EacRubyUtils::Inflector do
6
6
  describe '#variableize' do
7
7
  {
8
- '_A_variableName' => 'a_variablename'
8
+ '_A_variableName' => 'a_variablename',
9
+ 'àéíöũ' => 'aeiou'
9
10
  }.each do |source, expected|
10
11
  context "when source is \"#{source}\"" do
11
12
  it { expect(described_class.variableize(source)).to eq(expected) }
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/local_time_zone'
4
+
5
+ RSpec.describe(::EacRubyUtils::LocalTimeZone) do
6
+ describe '#auto' do
7
+ context 'when TZ environment variable is set' do
8
+ let(:expected_time_zone) { 'America/Sao_Paulo' }
9
+
10
+ before do
11
+ ENV['TZ'] = expected_time_zone
12
+ end
13
+
14
+ it { expect(described_class.auto).to eq(expected_time_zone) }
15
+ end
16
+ end
17
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EhbrsRubyUtils
4
- VERSION = '0.5.0'
4
+ VERSION = '0.5.1'
5
5
  end
@@ -8,7 +8,7 @@ module EhbrsRubyUtils
8
8
  enable_simple_cache
9
9
  enable_listable
10
10
 
11
- lists.add_symbol :codec_type, :audio, :video, :subtitle, :data
11
+ lists.add_symbol :codec_type, :audio, :video, :subtitle, :data, :attachment
12
12
 
13
13
  common_constructor :ffprobe_data do
14
14
  self.ffprobe_data = ffprobe_data.symbolize_keys.freeze
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ehbrs-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.3
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esquilo Azul Company
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-16 00:00:00.000000000 Z
11
+ date: 2021-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: avm-tools
@@ -16,34 +16,54 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.44'
19
+ version: '0.82'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 0.44.2
22
+ version: 0.82.1
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '0.44'
29
+ version: '0.82'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 0.44.2
32
+ version: 0.82.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: eac_cli
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '0.12'
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: 0.12.4
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '0.12'
50
+ - - "~>"
51
+ - !ruby/object:Gem::Version
52
+ version: 0.12.4
33
53
  - !ruby/object:Gem::Dependency
34
54
  name: eac_ruby_utils
35
55
  requirement: !ruby/object:Gem::Requirement
36
56
  requirements:
37
57
  - - "~>"
38
58
  - !ruby/object:Gem::Version
39
- version: '0.19'
59
+ version: '0.55'
40
60
  type: :runtime
41
61
  prerelease: false
42
62
  version_requirements: !ruby/object:Gem::Requirement
43
63
  requirements:
44
64
  - - "~>"
45
65
  - !ruby/object:Gem::Version
46
- version: '0.19'
66
+ version: '0.55'
47
67
  - !ruby/object:Gem::Dependency
48
68
  name: filesize
49
69
  requirement: !ruby/object:Gem::Requirement
@@ -72,6 +92,20 @@ dependencies:
72
92
  - - "~>"
73
93
  - !ruby/object:Gem::Version
74
94
  version: '3.0'
95
+ - !ruby/object:Gem::Dependency
96
+ name: telegram-bot-ruby
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
75
109
  - !ruby/object:Gem::Dependency
76
110
  name: eac_ruby_gem_support
77
111
  requirement: !ruby/object:Gem::Requirement
@@ -96,6 +130,16 @@ files:
96
130
  - Gemfile
97
131
  - exe/ehbrs
98
132
  - lib/ehbrs.rb
133
+ - lib/ehbrs/cooking_book.rb
134
+ - lib/ehbrs/cooking_book/build.rb
135
+ - lib/ehbrs/cooking_book/build/base_page.rb
136
+ - lib/ehbrs/cooking_book/build/index_page.rb
137
+ - lib/ehbrs/cooking_book/build/recipe_page.rb
138
+ - lib/ehbrs/cooking_book/project.rb
139
+ - lib/ehbrs/cooking_book/recipe.rb
140
+ - lib/ehbrs/cooking_book/recipe/ingredient.rb
141
+ - lib/ehbrs/cooking_book/recipe/measure.rb
142
+ - lib/ehbrs/cooking_book/recipe/part.rb
99
143
  - lib/ehbrs/executables.rb
100
144
  - lib/ehbrs/fs.rb
101
145
  - lib/ehbrs/fs/compressed_package.rb
@@ -106,7 +150,12 @@ files:
106
150
  - lib/ehbrs/observers.rb
107
151
  - lib/ehbrs/observers/base.rb
108
152
  - lib/ehbrs/observers/with_persistence.rb
153
+ - lib/ehbrs/patches/module/erb_template.rb
154
+ - lib/ehbrs/patches/object/erb_template.rb
155
+ - lib/ehbrs/patches/object/template.rb
109
156
  - lib/ehbrs/runner.rb
157
+ - lib/ehbrs/runner/cooking_book.rb
158
+ - lib/ehbrs/runner/cooking_book/build.rb
110
159
  - lib/ehbrs/runner/finances.rb
111
160
  - lib/ehbrs/runner/finances/bb_browser.rb
112
161
  - lib/ehbrs/runner/fs.rb
@@ -115,6 +164,8 @@ files:
115
164
  - lib/ehbrs/runner/google/translate.rb
116
165
  - lib/ehbrs/runner/self.rb
117
166
  - lib/ehbrs/runner/self/test.rb
167
+ - lib/ehbrs/runner/telegram.rb
168
+ - lib/ehbrs/runner/telegram/send_message.rb
118
169
  - lib/ehbrs/runner/vg.rb
119
170
  - lib/ehbrs/runner/vg/ips.rb
120
171
  - lib/ehbrs/runner/vg/wii.rb
@@ -131,7 +182,11 @@ files:
131
182
  - lib/ehbrs/self.rb
132
183
  - lib/ehbrs/self/observers/used_space.rb
133
184
  - lib/ehbrs/self/observers/with_persistence.rb
185
+ - lib/ehbrs/telegram.rb
186
+ - lib/ehbrs/telegram/message_sending.rb
134
187
  - lib/ehbrs/tools.rb
188
+ - lib/ehbrs/tools/application.rb
189
+ - lib/ehbrs/tools/instance.rb
135
190
  - lib/ehbrs/tools/version.rb
136
191
  - lib/ehbrs/user_dirs.rb
137
192
  - lib/ehbrs/vg.rb
@@ -177,11 +232,16 @@ files:
177
232
  - lib/ehbrs/videos/unsupported/fixes/supported_codec.rb
178
233
  - lib/ehbrs/videos/unsupported/fixes/supported_container.rb
179
234
  - lib/ehbrs/videos/unsupported/profiles.rb
235
+ - lib/ehbrs/videos/unsupported/profiles/aoc.rb
180
236
  - lib/ehbrs/videos/unsupported/profiles/base.rb
181
237
  - lib/ehbrs/videos/unsupported/profiles/philco.rb
182
238
  - lib/ehbrs/videos/unsupported/profiles/samsung.rb
183
239
  - lib/ehbrs/videos/unsupported/search.rb
184
240
  - lib/ehbrs/videos/unsupported/track.rb
241
+ - template/ehbrs/cooking_book/build/base_page/layout.html.erb
242
+ - template/ehbrs/cooking_book/build/index_page/inner.html.erb
243
+ - template/ehbrs/cooking_book/build/recipe_page/inner.html.erb
244
+ - template/ehbrs/cooking_book/build/recipe_page/part.html.erb
185
245
  - vendor/aranha-parsers/Gemfile
186
246
  - vendor/aranha-parsers/aranha-parsers.gemspec
187
247
  - vendor/aranha-parsers/lib/aranha/parsers.rb
@@ -239,13 +299,17 @@ files:
239
299
  - vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb
240
300
  - vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb
241
301
  - vendor/eac_cli/lib/eac_cli/docopt/doc_builder/alternative.rb
302
+ - vendor/eac_cli/lib/eac_cli/docopt/runner_context_replacement.rb
242
303
  - vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb
243
304
  - vendor/eac_cli/lib/eac_cli/parser.rb
244
305
  - vendor/eac_cli/lib/eac_cli/parser/alternative.rb
245
306
  - vendor/eac_cli/lib/eac_cli/parser/alternative/argv.rb
246
307
  - vendor/eac_cli/lib/eac_cli/parser/alternative/double_dash.rb
308
+ - vendor/eac_cli/lib/eac_cli/parser/alternative/long_options.rb
309
+ - vendor/eac_cli/lib/eac_cli/parser/alternative/option_argument.rb
247
310
  - vendor/eac_cli/lib/eac_cli/parser/alternative/options.rb
248
311
  - vendor/eac_cli/lib/eac_cli/parser/alternative/positionals.rb
312
+ - vendor/eac_cli/lib/eac_cli/parser/alternative/short_options.rb
249
313
  - vendor/eac_cli/lib/eac_cli/parser/collector.rb
250
314
  - vendor/eac_cli/lib/eac_cli/parser/error.rb
251
315
  - vendor/eac_cli/lib/eac_cli/patches.rb
@@ -288,6 +352,15 @@ files:
288
352
  - vendor/eac_docker/spec/lib/eac_docker/images/templatized_spec_files/stub_docker_image/Dockerfile
289
353
  - vendor/eac_docker/spec/rubocop_spec.rb
290
354
  - vendor/eac_docker/spec/spec_helper.rb
355
+ - vendor/eac_ruby_base0/Gemfile
356
+ - vendor/eac_ruby_base0/eac_ruby_base0.gemspec
357
+ - vendor/eac_ruby_base0/lib/eac_ruby_base0.rb
358
+ - vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb
359
+ - vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb
360
+ - vendor/eac_ruby_base0/lib/eac_ruby_base0/runner/test_all.rb
361
+ - vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb
362
+ - vendor/eac_ruby_base0/spec/rubocop_spec.rb
363
+ - vendor/eac_ruby_base0/spec/spec_helper.rb
291
364
  - vendor/eac_ruby_utils/Gemfile
292
365
  - vendor/eac_ruby_utils/MIT-LICENCE
293
366
  - vendor/eac_ruby_utils/README.rdoc
@@ -302,6 +375,9 @@ files:
302
375
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_concern/class_setup.rb
303
376
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_concern/module_setup.rb
304
377
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor.rb
378
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/class_initialize.rb
379
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/instance_initialize.rb
380
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/super_args.rb
305
381
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/configs.rb
306
382
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/configs/base.rb
307
383
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/configs/file.rb
@@ -368,6 +444,7 @@ files:
368
444
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/listable/string_list.rb
369
445
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/listable/symbol_list.rb
370
446
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/listable/value.rb
447
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/local_time_zone.rb
371
448
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/on_clean_ruby_environment.rb
372
449
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/options_consumer.rb
373
450
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patch.rb
@@ -382,6 +459,8 @@ files:
382
459
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/hash.rb
383
460
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/hash/options_consumer.rb
384
461
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/hash/sym_keys_hash.rb
462
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel.rb
463
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel/nyi.rb
385
464
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module.rb
386
465
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/abstract_methods.rb
387
466
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/common_concern.rb
@@ -391,6 +470,7 @@ files:
391
470
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/patch.rb
392
471
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/require_sub.rb
393
472
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/simple_cache.rb
473
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/template.rb
394
474
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object.rb
395
475
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/asserts.rb
396
476
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/debug.rb
@@ -406,7 +486,6 @@ files:
406
486
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/string/inflector.rb
407
487
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time.rb
408
488
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/default_time_zone_set.rb
409
- - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/local_time_zone.rb
410
489
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/paths_hash.rb
411
490
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/paths_hash/entry_key_error.rb
412
491
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/paths_hash/node.rb
@@ -451,6 +530,7 @@ files:
451
530
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/fs/temp_spec.rb
452
531
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/inflector_spec.rb
453
532
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/listable_spec.rb
533
+ - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/local_time_zone_spec.rb
454
534
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/options_consumer_spec.rb
455
535
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerable/boolean_combinations_spec.rb
456
536
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/enumerator/current_spec.rb