ehbrs-tools 0.16.4 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) 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 +31 -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/music.rb +9 -0
  13. data/lib/ehbrs/music/album.rb +42 -0
  14. data/lib/ehbrs/observers/base.rb +1 -1
  15. data/lib/ehbrs/observers/with_persistence.rb +1 -1
  16. data/lib/ehbrs/patches/module/erb_template.rb +11 -0
  17. data/lib/ehbrs/patches/object/erb_template.rb +9 -0
  18. data/lib/ehbrs/patches/object/template.rb +7 -0
  19. data/lib/ehbrs/runner.rb +6 -13
  20. data/lib/ehbrs/runner/cooking_book.rb +30 -0
  21. data/lib/ehbrs/runner/cooking_book/build.rb +32 -0
  22. data/lib/ehbrs/runner/music.rb +16 -0
  23. data/lib/ehbrs/runner/music/selected.rb +63 -0
  24. data/lib/ehbrs/runner/telegram.rb +26 -0
  25. data/lib/ehbrs/runner/telegram/send_message.rb +29 -0
  26. data/lib/ehbrs/runner/videos/unsupported.rb +1 -1
  27. data/lib/ehbrs/runner/web_utils/videos/upload.rb +1 -1
  28. data/lib/ehbrs/telegram.rb +9 -0
  29. data/lib/ehbrs/telegram/message_sending.rb +32 -0
  30. data/lib/ehbrs/tools/application.rb +13 -0
  31. data/lib/ehbrs/tools/instance.rb +16 -0
  32. data/lib/ehbrs/tools/version.rb +1 -1
  33. data/lib/ehbrs/videos/track.rb +1 -19
  34. data/lib/ehbrs/videos/unsupported/check_support.rb +1 -1
  35. data/lib/ehbrs/videos/unsupported/checks/codec_extra_unlisted.rb +1 -1
  36. data/lib/ehbrs/videos/unsupported/checks/codec_extra_unsupported.rb +1 -1
  37. data/lib/ehbrs/videos/unsupported/checks/codec_unlisted.rb +2 -2
  38. data/lib/ehbrs/videos/unsupported/checks/codec_unsupported.rb +1 -1
  39. data/lib/ehbrs/videos/unsupported/fix_profile.rb +0 -13
  40. data/lib/ehbrs/videos/unsupported/fixes/supported_codec.rb +10 -10
  41. data/lib/ehbrs/videos/unsupported/profiles/aoc.rb +27 -0
  42. data/template/ehbrs/cooking_book/build/base_page/layout.html.erb +20 -0
  43. data/template/ehbrs/cooking_book/build/index_page/inner.html.erb +6 -0
  44. data/template/ehbrs/cooking_book/build/recipe_page/inner.html.erb +6 -0
  45. data/template/ehbrs/cooking_book/build/recipe_page/part.html.erb +27 -0
  46. data/vendor/eac_cli/lib/eac_cli/core_ext.rb +2 -0
  47. data/vendor/eac_cli/lib/eac_cli/definition/alternative.rb +4 -7
  48. data/vendor/eac_cli/lib/eac_cli/definition/argument_option.rb +8 -0
  49. data/vendor/eac_cli/lib/eac_cli/definition/base_option.rb +21 -9
  50. data/vendor/eac_cli/lib/eac_cli/definition/base_option/initialize_args_parser.rb +47 -0
  51. data/vendor/eac_cli/lib/eac_cli/definition/boolean_option.rb +8 -0
  52. data/vendor/eac_cli/lib/eac_cli/definition/positional_argument.rb +12 -0
  53. data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb +15 -1
  54. data/vendor/eac_cli/lib/eac_cli/docopt/runner_context_replacement.rb +15 -0
  55. data/vendor/eac_cli/lib/eac_cli/docopt/runner_extension.rb +5 -0
  56. data/vendor/eac_cli/lib/eac_cli/parser/alternative.rb +4 -4
  57. data/vendor/eac_cli/lib/eac_cli/parser/alternative/long_options.rb +37 -0
  58. data/vendor/eac_cli/lib/eac_cli/parser/alternative/option_argument.rb +29 -0
  59. data/vendor/eac_cli/lib/eac_cli/parser/alternative/options.rb +7 -36
  60. data/vendor/eac_cli/lib/eac_cli/parser/alternative/short_options.rb +45 -0
  61. data/vendor/eac_cli/lib/eac_cli/parser/collector.rb +3 -17
  62. data/vendor/eac_cli/lib/eac_cli/patches/object/runner_with.rb +2 -1
  63. data/vendor/eac_cli/lib/eac_cli/runner.rb +0 -48
  64. data/vendor/eac_cli/lib/eac_cli/runner/after_class_methods.rb +29 -0
  65. data/vendor/eac_cli/lib/eac_cli/runner/instance_methods.rb +31 -0
  66. data/vendor/eac_cli/lib/eac_cli/runner_with/subcommands.rb +15 -3
  67. data/vendor/eac_cli/lib/eac_cli/runner_with_set.rb +50 -0
  68. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  69. data/vendor/eac_cli/spec/lib/eac_cli/definition/alternative_spec.rb +4 -0
  70. data/vendor/eac_cli/spec/lib/eac_cli/runner_spec.rb +43 -4
  71. data/vendor/eac_ruby_base0/Gemfile +5 -0
  72. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +20 -0
  73. data/vendor/eac_ruby_base0/lib/eac_ruby_base0.rb +7 -0
  74. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/application.rb +69 -0
  75. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/jobs_runner.rb +31 -0
  76. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches.rb +4 -0
  77. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches/class.rb +4 -0
  78. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches/class/jobs_runner.rb +10 -0
  79. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches/object.rb +5 -0
  80. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/patches/object/runner_with.rb +5 -0
  81. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner.rb +54 -0
  82. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner/test_all.rb +22 -0
  83. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with.rb +9 -0
  84. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/confirmable.rb +21 -0
  85. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/filesystem_traverser.rb +52 -0
  86. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +5 -0
  87. data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +7 -0
  88. data/vendor/eac_ruby_base0/spec/spec_helper.rb +100 -0
  89. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_concern/module_setup.rb +16 -6
  90. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor.rb +2 -99
  91. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/class_initialize.rb +29 -0
  92. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/instance_initialize.rb +53 -0
  93. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/common_constructor/super_args.rb +54 -0
  94. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/console/docopt_runner/_subcommands.rb +10 -1
  95. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/fs/traverser.rb +0 -2
  96. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/inflector.rb +4 -1
  97. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/local_time_zone.rb +48 -0
  98. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/class/settings_provider.rb +10 -0
  99. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel.rb +4 -0
  100. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel/nyi.rb +8 -0
  101. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/module/template.rb +10 -0
  102. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/if_nil.rb +17 -0
  103. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/object/template.rb +1 -8
  104. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/pathname/basename_sub.rb +2 -2
  105. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/required_zone.rb +11 -0
  106. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  107. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/yaml.rb +8 -0
  108. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/common_concern_spec.rb +14 -4
  109. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/common_constructor_spec.rb +30 -0
  110. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/inflector_spec.rb +2 -1
  111. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/local_time_zone_spec.rb +17 -0
  112. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/version.rb +1 -1
  113. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/stream.rb +1 -1
  114. metadata +87 -8
  115. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/default_time_zone_set.rb +0 -5
  116. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/local_time_zone.rb +0 -25
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
4
+
5
+ require 'eac_ruby_base0/version'
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = 'eac_ruby_base0'
9
+ s.version = EacRubyBase0::VERSION
10
+ s.authors = ['Put here the authors']
11
+ s.summary = 'Put here de description.'
12
+
13
+ s.files = Dir['{lib}/**/*']
14
+
15
+ s.add_dependency 'eac_cli', '~> 0.7'
16
+ s.add_dependency 'eac_ruby_gems_utils', '~> 0.7', '>= 0.7.2'
17
+ s.add_dependency 'eac_ruby_utils', '~> 0.46'
18
+
19
+ s.add_development_dependency 'eac_ruby_gem_support', '~> 0.1', '>= 0.1.2'
20
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacRubyBase0
6
+ require_sub __FILE__
7
+ end
@@ -0,0 +1,69 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_gems_utils/gem'
4
+ require 'eac_ruby_utils/core_ext'
5
+ require 'eac_ruby_utils/filesystem_cache'
6
+
7
+ module EacRubyBase0
8
+ class Application
9
+ enable_simple_cache
10
+ enable_listable
11
+ lists.add_symbol :option, :name, :home_dir
12
+
13
+ common_constructor :gemspec_dir, :options, default: [{}] do
14
+ self.gemspec_dir = gemspec_dir.to_pathname
15
+ self.options = options.symbolize_keys.assert_valid_keys(self.class.lists.option.values).freeze
16
+ end
17
+
18
+ delegate :version, to: :self_gem
19
+
20
+ def all_gems
21
+ vendor_gems + [self_gem]
22
+ end
23
+
24
+ { cache: '.cache', config: '.config', data: '.local/share' }.each do |item, subpath|
25
+ xdg_env_method_name = "#{item}_xdg_env"
26
+
27
+ define_method xdg_env_method_name do
28
+ ENV["XDG_#{item.upcase}_HOME"].if_present(&:to_pathname)
29
+ end
30
+
31
+ define_method "#{item}_dir" do
32
+ (send(xdg_env_method_name) || home_dir.join(subpath)).join(name)
33
+ end
34
+ end
35
+
36
+ def fs_cache
37
+ @fs_cache ||= ::EacRubyUtils::FilesystemCache.new(
38
+ cache_dir.join(::EacRubyUtils::FilesystemCache.name.parameterize)
39
+ )
40
+ end
41
+
42
+ def home_dir
43
+ @home_dir ||= (options[OPTION_HOME_DIR] || ENV.fetch('HOME')).to_pathname
44
+ end
45
+
46
+ def name
47
+ options[OPTION_NAME] || self_gem.name
48
+ end
49
+
50
+ def vendor_dir
51
+ gemspec_dir.join('vendor')
52
+ end
53
+
54
+ private
55
+
56
+ def self_gem_uncached
57
+ ::EacRubyGemsUtils::Gem.new(gemspec_dir)
58
+ end
59
+
60
+ def vendor_gems_uncached
61
+ r = []
62
+ vendor_dir.children.each do |c|
63
+ vgem = ::EacRubyGemsUtils::Gem.new(c)
64
+ r << vgem if vgem.gemfile_path.exist?
65
+ end
66
+ r
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/console/speaker'
4
+ require 'eac_ruby_utils/settings_provider'
5
+
6
+ module EacRubyBase0
7
+ module JobsRunner
8
+ common_concern do
9
+ include ::EacRubyUtils::Console::Speaker
10
+ include ::EacRubyUtils::SettingsProvider
11
+ end
12
+
13
+ def run_job(job)
14
+ return unless run_job?(job)
15
+
16
+ infom "Running job \"#{job}\"..."
17
+ send(job)
18
+ end
19
+
20
+ def run_job?(job)
21
+ the_method = "run_#{job}?"
22
+ respond_to?(the_method, true) ? send(the_method) : true
23
+ end
24
+
25
+ def run_jobs(*jobs)
26
+ jobs = setting_value(:jobs) if jobs.empty?
27
+ jobs.each { |job| run_job(job) }
28
+ success 'Done'
29
+ end
30
+ end
31
+ 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,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/require_sub'
4
+ ::EacRubyUtils.require_sub(__FILE__)
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_base0/jobs_runner'
4
+ require 'eac_ruby_utils/patch'
5
+
6
+ class Class
7
+ def enable_jobs_runner
8
+ ::EacRubyUtils.patch(self, ::EacRubyBase0::JobsRunner)
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ Dir["#{File.dirname(__FILE__)}/#{::File.basename(__FILE__, '.*')}/*.rb"].sort.each do |path|
4
+ require path
5
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/core_ext'
4
+ require 'eac_ruby_base0/runner_with'
5
+ ::EacCli::RunnerWithSet.default.add_namespace(::EacRubyBase0::RunnerWith)
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/runner_with/help'
4
+ require 'eac_cli/runner_with/subcommands'
5
+ require 'eac_ruby_utils/core_ext'
6
+
7
+ module EacRubyBase0
8
+ module Runner
9
+ require_sub __FILE__
10
+ enable_console_speaker
11
+ common_concern do
12
+ include ::EacCli::RunnerWith::Help
13
+ include ::EacCli::RunnerWith::Subcommands
14
+ runner_definition do
15
+ bool_opt '-q', '--quiet', 'Quiet mode.'
16
+ bool_opt '-I', '--no-input', 'Fail if a input is requested.'
17
+ subcommands
18
+ alt do
19
+ bool_opt '-V', '--version', 'Show version.', usage: true, required: true
20
+ end
21
+ end
22
+ end
23
+
24
+ def run
25
+ on_speaker_node do |node|
26
+ node.stderr = ::StringIO.new if parsed.quiet?
27
+ node.stdin = FailIfRequestInput.new if parsed.no_input?
28
+ if parsed.version?
29
+ show_version
30
+ else
31
+ run_with_subcommand
32
+ end
33
+ end
34
+ end
35
+
36
+ def application_version
37
+ runner_context.call(:application).version.to_s
38
+ end
39
+
40
+ def show_version
41
+ out("#{application_version}\n")
42
+ end
43
+
44
+ class FailIfRequestInput
45
+ enable_console_speaker
46
+
47
+ %w[gets noecho].each do |method|
48
+ define_method(method) do
49
+ raise "Input method requested (\"#{method}\") and option --no-input is set"
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/core_ext'
4
+ require 'eac_ruby_gems_utils/tests/multiple'
5
+
6
+ module EacRubyBase0
7
+ module Runner
8
+ class TestAll
9
+ runner_with :help do
10
+ desc 'Test core and local gems.'
11
+ end
12
+
13
+ def run
14
+ fatal_error 'Some test did not pass' unless tests.ok?
15
+ end
16
+
17
+ def tests_uncached
18
+ ::EacRubyGemsUtils::Tests::Multiple.new(runner_context.call(:application).all_gems)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacRubyBase0
6
+ module RunnerWith
7
+ require_sub __FILE__
8
+ end
9
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/runner'
4
+ require 'eac_ruby_utils/fs/traversable'
5
+
6
+ module EacRubyBase0
7
+ module RunnerWith
8
+ module Confirmable
9
+ extend ::ActiveSupport::Concern
10
+
11
+ included do
12
+ include ::EacCli::Runner
13
+ runner_definition do
14
+ bool_opt '-c', '--confirm', 'Confirm changes.'
15
+ end
16
+ end
17
+
18
+ delegate :confirm?, to: :parsed
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_cli/runner'
4
+ require 'eac_ruby_utils/core_ext'
5
+ require 'eac_ruby_utils/fs/traversable'
6
+ require 'eac_ruby_utils/settings_provider'
7
+
8
+ module EacRubyBase0
9
+ module RunnerWith
10
+ module FilesystemTraverser
11
+ DEFAULT_DEFAULT_TRAVERSER_RECURSIVE = false
12
+
13
+ common_concern do
14
+ include ::EacCli::Runner
15
+ include ::EacRubyUtils::Fs::Traversable
16
+ enable_settings_provider
17
+ include TopMethods
18
+ runner_definition do
19
+ bool_opt '-R', '--recursive', 'Recursive.'
20
+ bool_opt '--no-recursive', 'No recursive.'
21
+ pos_arg :paths, optional: true, repeat: true
22
+ end
23
+ end
24
+
25
+ module TopMethods
26
+ def on_none_path_informed
27
+ infom 'Warning: none path informed'
28
+ end
29
+
30
+ def paths
31
+ parsed.paths.map(&:to_pathname)
32
+ end
33
+
34
+ def run_filesystem_traverser
35
+ if parsed.paths.any?
36
+ parsed.paths.each { |path| traverser_check_path(path) }
37
+ else
38
+ on_none_path_informed
39
+ end
40
+ end
41
+
42
+ def traverser_recursive
43
+ return false if parsed.no_recursive?
44
+ return true if parsed.recursive?
45
+
46
+ setting_value(:default_traverser_recursive, required: false)
47
+ .if_not_nil(DEFAULT_DEFAULT_TRAVERSER_RECURSIVE)
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EacRubyBase0
4
+ VERSION = '0.4.0'
5
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_gem_support/spec/examples/rubocop_check'
4
+
5
+ RSpec.describe ::RuboCop, slow: true do
6
+ include_examples 'rubocop_check', ::File.expand_path('..', __dir__)
7
+ end
@@ -0,0 +1,100 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file was generated by the `rspec --init` command. Conventionally, all
4
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
5
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
6
+ # this file to always be loaded, without a need to explicitly require it in any
7
+ # files.
8
+ #
9
+ # Given that it is always loaded, you are encouraged to keep this file as
10
+ # light-weight as possible. Requiring heavyweight dependencies from this file
11
+ # will add to the boot time of your test suite on EVERY test run, even for an
12
+ # individual file that may not need all of that loaded. Instead, consider making
13
+ # a separate helper file that requires the additional dependencies and performs
14
+ # the additional setup, and require it from the spec files that actually need
15
+ # it.
16
+ #
17
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
18
+ RSpec.configure do |config|
19
+ # rspec-expectations config goes here. You can use an alternate
20
+ # assertion/expectation library such as wrong or the stdlib/minitest
21
+ # assertions if you prefer.
22
+ config.expect_with :rspec do |expectations|
23
+ # This option will default to `true` in RSpec 4. It makes the `description`
24
+ # and `failure_message` of custom matchers include text for helper methods
25
+ # defined using `chain`, e.g.:
26
+ # be_bigger_than(2).and_smaller_than(4).description
27
+ # # => "be bigger than 2 and smaller than 4"
28
+ # ...rather than:
29
+ # # => "be bigger than 2"
30
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
31
+ end
32
+
33
+ # rspec-mocks config goes here. You can use an alternate test double
34
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
35
+ config.mock_with :rspec do |mocks|
36
+ # Prevents you from mocking or stubbing a method that does not exist on
37
+ # a real object. This is generally recommended, and will default to
38
+ # `true` in RSpec 4.
39
+ mocks.verify_partial_doubles = true
40
+ end
41
+
42
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
43
+ # have no way to turn it off -- the option exists only for backwards
44
+ # compatibility in RSpec 3). It causes shared context metadata to be
45
+ # inherited by the metadata hash of host groups and examples, rather than
46
+ # triggering implicit auto-inclusion in groups with matching metadata.
47
+ config.shared_context_metadata_behavior = :apply_to_host_groups
48
+
49
+ # The settings below are suggested to provide a good initial experience
50
+ # with RSpec, but feel free to customize to your heart's content.
51
+ # # This allows you to limit a spec run to individual examples or groups
52
+ # # you care about by tagging them with `:focus` metadata. When nothing
53
+ # # is tagged with `:focus`, all examples get run. RSpec also provides
54
+ # # aliases for `it`, `describe`, and `context` that include `:focus`
55
+ # # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
56
+ # config.filter_run_when_matching :focus
57
+ #
58
+ # # Allows RSpec to persist some state between runs in order to support
59
+ # # the `--only-failures` and `--next-failure` CLI options. We recommend
60
+ # # you configure your source control system to ignore this file.
61
+ # config.example_status_persistence_file_path = "spec/examples.txt"
62
+ #
63
+ # # Limits the available syntax to the non-monkey patched syntax that is
64
+ # # recommended. For more details, see:
65
+ # # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
66
+ # # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
67
+ # # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
68
+ # config.disable_monkey_patching!
69
+ #
70
+ # # This setting enables warnings. It's recommended, but in some cases may
71
+ # # be too noisy due to issues in dependencies.
72
+ # config.warnings = true
73
+ #
74
+ # # Many RSpec users commonly either run the entire suite or an individual
75
+ # # file, and it's useful to allow more verbose output when running an
76
+ # # individual spec file.
77
+ # if config.files_to_run.one?
78
+ # # Use the documentation formatter for detailed output,
79
+ # # unless a formatter has already been configured
80
+ # # (e.g. via a command-line flag).
81
+ # config.default_formatter = "doc"
82
+ # end
83
+ #
84
+ # # Print the 10 slowest examples and example groups at the
85
+ # # end of the spec run, to help surface which specs are running
86
+ # # particularly slow.
87
+ # config.profile_examples = 10
88
+ #
89
+ # # Run specs in random order to surface order dependencies. If you find an
90
+ # # order dependency and want to debug it, you can fix the order by providing
91
+ # # the seed, which is printed after each run.
92
+ # # --seed 1234
93
+ # config.order = :random
94
+ #
95
+ # # Seed global randomization in this process using the `--seed` CLI option.
96
+ # # Setting this allows you to use `--seed` to deterministically reproduce
97
+ # # test failures related to randomization by passing the same `--seed` value
98
+ # # as the one that triggered the failure.
99
+ # Kernel.srand config.seed
100
+ end