snow_sync 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 696e93653c07b93874eb58e8c30946eff235ed28
4
- data.tar.gz: d23f57e2ebfbfeb4693d4d1ffd1a304efe8e6ffb
3
+ metadata.gz: 1473ea605ea86f9fe2100a97d3aff70c76640957
4
+ data.tar.gz: a64bb94f9369088e881546b5aa716878a8174a95
5
5
  SHA512:
6
- metadata.gz: 231af4f55c4f7fd031942abc58ded98e6a96f2c91778749046af9cc92a71ffc832c5b125018f50cfd35c98b02dbb9b8c2e3da10accf3bb50dcf37c5c3e570513
7
- data.tar.gz: b04957d98621748ae943b6abca6d488a75cf1f24ed78bbe6bd07855d8610998f40f47b9da2944d7096f6a34ea66a96c0201bf4789e08dcfcfa310bba3ce65e5b
6
+ metadata.gz: dec1213d54efdaf5c7e6af24948d84256f53550fa5715c7b0981ecc212c41086e292ea495f1bdb0a4021b110278b50edca871a055c308766356437ff31f99a40
7
+ data.tar.gz: e02cacbefa4ca84e9e1fa6a93a1525063d713098e6f145ce1bf711a586b36a3e08a1d13be96b3c90563b521d6a0f7a96ba453aadc5211f34483e803ecdcb3baf
@@ -1,3 +1,3 @@
1
1
  module SnowSync
2
- VERSION = "1.5.0"
2
+ VERSION = "1.6.0"
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,108 +1,18 @@
1
- # This file was generated by the `rspec --init` command. Conventionally, all
2
- # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
- # The generated `.rspec` file contains `--require spec_helper` which will cause
4
- # this file to always be loaded, without a need to explicitly require it in any
5
- # files.
6
- #
7
- # Given that it is always loaded, you are encouraged to keep this file as
8
- # light-weight as possible. Requiring heavyweight dependencies from this file
9
- # will add to the boot time of your test suite on EVERY test run, even for an
10
- # individual file that may not need all of that loaded. Instead, consider making
11
- # a separate helper file that requires the additional dependencies and performs
12
- # the additional setup, and require it from the spec files that actually need
13
- # it.
14
- #
15
- # The `.rspec` file also contains a few flags that are not defaults but that
16
- # users commonly want.
17
- #
18
- # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
1
  RSpec.configure do |config|
20
- require "byebug"
2
+
21
3
  require "facets"
22
4
  require "fileutils"
23
5
  require "json"
24
- require_relative "../lib/snow_sync/sync_util.rb"
25
- # rspec-expectations config goes here. You can use an alternate
26
- # assertion/expectation library such as wrong or the stdlib/minitest
27
- # assertions if you prefer.
6
+ require_relative "../lib/snow_sync/sync_util.rb"
7
+
28
8
  config.expect_with :rspec do |expectations|
29
- # This option will default to `true` in RSpec 4. It makes the `description`
30
- # and `failure_message` of custom matchers include text for helper methods
31
- # defined using `chain`, e.g.:
32
- # be_bigger_than(2).and_smaller_than(4).description
33
- # # => "be bigger than 2 and smaller than 4"
34
- # ...rather than:
35
- # # => "be bigger than 2"
36
9
  expectations.include_chain_clauses_in_custom_matcher_descriptions = true
37
10
  end
38
11
 
39
- # rspec-mocks config goes here. You can use an alternate test double
40
- # library (such as bogus or mocha) by changing the `mock_with` option here.
41
12
  config.mock_with :rspec do |mocks|
42
- # Prevents you from mocking or stubbing a method that does not exist on
43
- # a real object. This is generally recommended, and will default to
44
- # `true` in RSpec 4.
45
13
  mocks.verify_partial_doubles = true
46
14
  end
47
15
 
48
- # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
49
- # have no way to turn it off -- the option exists only for backwards
50
- # compatibility in RSpec 3). It causes shared context metadata to be
51
- # inherited by the metadata hash of host groups and examples, rather than
52
- # triggering implicit auto-inclusion in groups with matching metadata.
53
16
  config.shared_context_metadata_behavior = :apply_to_host_groups
54
17
 
55
- # The settings below are suggested to provide a good initial experience
56
- # with RSpec, but feel free to customize to your heart's content.
57
- =begin
58
- # This allows you to limit a spec run to individual examples or groups
59
- # you care about by tagging them with `:focus` metadata. When nothing
60
- # is tagged with `:focus`, all examples get run. RSpec also provides
61
- # aliases for `it`, `describe`, and `context` that include `:focus`
62
- # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
63
- config.filter_run_when_matching :focus
64
-
65
- # Allows RSpec to persist some state between runs in order to support
66
- # the `--only-failures` and `--next-failure` CLI options. We recommend
67
- # you configure your source control system to ignore this file.
68
- config.example_status_persistence_file_path = "spec/examples.txt"
69
-
70
- # Limits the available syntax to the non-monkey patched syntax that is
71
- # recommended. For more details, see:
72
- # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
73
- # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
74
- # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
75
- config.disable_monkey_patching!
76
-
77
- # This setting enables warnings. It's recommended, but in some cases may
78
- # be too noisy due to issues in dependencies.
79
- config.warnings = true
80
-
81
- # Many RSpec users commonly either run the entire suite or an individual
82
- # file, and it's useful to allow more verbose output when running an
83
- # individual spec file.
84
- if config.files_to_run.one?
85
- # Use the documentation formatter for detailed output,
86
- # unless a formatter has already been configured
87
- # (e.g. via a command-line flag).
88
- config.default_formatter = 'doc'
89
- end
90
-
91
- # Print the 10 slowest examples and example groups at the
92
- # end of the spec run, to help surface which specs are running
93
- # particularly slow.
94
- config.profile_examples = 10
95
-
96
- # Run specs in random order to surface order dependencies. If you find an
97
- # order dependency and want to debug it, you can fix the order by providing
98
- # the seed, which is printed after each run.
99
- # --seed 1234
100
- config.order = :random
101
-
102
- # Seed global randomization in this process using the `--seed` CLI option.
103
- # Setting this allows you to use `--seed` to deterministically reproduce
104
- # test failures related to randomization by passing the same `--seed` value
105
- # as the one that triggered the failure.
106
- Kernel.srand config.seed
107
- =end
108
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snow_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Wallace