snow_sync 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -3
- data/lib/snow_sync/sync_util.rb +1 -1
- data/lib/snow_sync/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d72e4b145e73ab7e226651173c037d5e104aa06
|
|
4
|
+
data.tar.gz: c94c90bda93ccd9680bb0e4bc641030fe1ae75fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07568e10689e39c77d50aac5dc8dd9a73f9f4fda63ebb8e02bd930ff231c16f0eafad56d8240ffcb816e6fa58a37c93f8aece453278ae0b56e0995970d46fa5f
|
|
7
|
+
data.tar.gz: d536814539b196f09019e80eeb2c004fbe10db7ebab8cf6566ede6cd93c045462ea9b8e129b0ed5bcc39de5d69e182be330b156380eddd4eb881ee05720bd98b
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SnowSync
|
|
2
2
|
|
|
3
|
-
[](https://rubygems.org/gems/snow_sync) [](https://rubygems.org/gems/snow_sync) [](https://rubygems.org/gems/snow_sync)
|
|
4
4
|
|
|
5
5
|
SnowSync is a file sync utility tool and API which provides a bridge for off platform ServiceNow development using an IDE or text editor locally.
|
|
6
6
|
|
|
@@ -34,7 +34,6 @@ Create a Gemfile and add the following Gem dependencies:
|
|
|
34
34
|
|
|
35
35
|
```ruby
|
|
36
36
|
source 'https://rubygems.org'
|
|
37
|
-
gem 'byebug', '~> 9.0.6'
|
|
38
37
|
gem 'facets', '~> 3.1.0'
|
|
39
38
|
gem 'guard', '~> 2.14.0'
|
|
40
39
|
gem 'guard-yield', '~> 0.1.0'
|
|
@@ -69,7 +68,7 @@ guard -i
|
|
|
69
68
|
## Running the Tests
|
|
70
69
|
|
|
71
70
|
```bash
|
|
72
|
-
cd <path>/gems/snow_sync-<version>
|
|
71
|
+
cd <path-to-the-snow_sync-dir>/gems/snow_sync-<version>
|
|
73
72
|
```
|
|
74
73
|
|
|
75
74
|
* Integration tests use a test record in the instance (e.g. a script include)
|
data/lib/snow_sync/sync_util.rb
CHANGED
|
@@ -199,7 +199,7 @@ module SnowSync
|
|
|
199
199
|
end
|
|
200
200
|
end
|
|
201
201
|
|
|
202
|
-
#
|
|
202
|
+
# Dispatches osx & linux platform notification when file updates are pushed
|
|
203
203
|
# @param [Array] update File updated
|
|
204
204
|
# @param [Object] log Log Object
|
|
205
205
|
|
data/lib/snow_sync/version.rb
CHANGED