snow_sync 1.9.0 → 1.9.1
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 +10 -7
- data/lib/snow_sync/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 89faf7978942b059dbd2933732d9f05ba2db8258
|
|
4
|
+
data.tar.gz: a84fb565c1183ec768742663677e9c08f62e21e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7c5e58ef70bce7a428488e2e4b25680bfb9667a910d1aed87ac2c386378e75fc19e79df8c1f9c074e94df339cfa5342f7f0c5fb5a667c72211585e0521d6b6f
|
|
7
|
+
data.tar.gz: b6c808141851346f8108561983123af5641641ff99dc1a0cd273f59c42a8896d061fd602387cafd06647b1a50bb3bf3c11440d34dd415596aa8941a52fb96b54
|
data/README.md
CHANGED
|
@@ -18,10 +18,10 @@ gem install bundler
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
cd <path>/gems/snow_sync-<version>
|
|
21
|
-
touch Gemfile
|
|
22
|
-
vim Gemfile
|
|
23
21
|
```
|
|
24
22
|
|
|
23
|
+
Create a Gemfile and add the following:
|
|
24
|
+
|
|
25
25
|
```ruby
|
|
26
26
|
source 'https://rubygems.org'
|
|
27
27
|
gem 'byebug', '~> 9.0.6'
|
|
@@ -33,16 +33,18 @@ gem 'libnotify', '~> 0.9.1'
|
|
|
33
33
|
gem 'rake', '~> 10.0.0'
|
|
34
34
|
gem 'rest-client', '~> 2.0.0'
|
|
35
35
|
gem 'rspec', '~> 3.5.0'
|
|
36
|
+
```
|
|
36
37
|
|
|
38
|
+
```bash
|
|
37
39
|
bundle install
|
|
38
40
|
```
|
|
39
41
|
|
|
40
42
|
```bash
|
|
41
43
|
cd /lib/snow_sync
|
|
42
|
-
vim configs.yml
|
|
43
44
|
```
|
|
44
45
|
|
|
45
|
-
|
|
46
|
+
* Setup the configs in the configs.yml
|
|
47
|
+
* Append /api/now/table/ to the base_url
|
|
46
48
|
|
|
47
49
|
```bash
|
|
48
50
|
guard -i
|
|
@@ -52,10 +54,11 @@ guard -i
|
|
|
52
54
|
|
|
53
55
|
```bash
|
|
54
56
|
cd <path>/gems/snow_sync-<version>
|
|
55
|
-
touch test_configs.yml
|
|
56
|
-
vim /spec/sync_util_spec.rb
|
|
57
57
|
```
|
|
58
|
-
|
|
58
|
+
|
|
59
|
+
* Create a test_configs.yml file
|
|
60
|
+
* Create a test record in the instance (ex: a test script include)
|
|
61
|
+
* Setup the test configs
|
|
59
62
|
|
|
60
63
|
```ruby
|
|
61
64
|
rspec spec/sync_util_spec.rb
|
data/lib/snow_sync/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: snow_sync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Wallace
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-12-
|
|
11
|
+
date: 2016-12-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|