netsuite_rails 0.3.1 → 0.3.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 +8 -8
- data/README.md +12 -0
- data/lib/netsuite_rails/transformations.rb +2 -0
- data/netsuite_rails.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MTMwYmZiZTdlNGI4MGE2MDI3OTYzOTNlNzY1MTM5OWYzYWNiMjc2Mw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDk1NjdhY2E2NTlhMzE0NjdlZTNkMjAyM2FmOWI2YTY1MmJhODRmNQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZjI1OTgzYTMyNmIxMDY3MzRhZGE4Y2FkYWEwMTBmMGZmNGMwNjBlZWNjY2Rm
|
|
10
|
+
YmM0YWZlN2M0MDlhZTE5N2FlNmI2MmEzODY3ZGM5MjZmM2NhNDZiMGUyZTlh
|
|
11
|
+
MjMwMmVjZjU1NzM1ZDhkMmNhMGRkOGYyMDY1M2RlZGI1YmY3OTk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjQyNjVmMTZmY2E2YTQwNzZkY2IzMTE0MmIxNTIwZjJlY2E0YTk0Njc4NDE4
|
|
14
|
+
MzYwZmJlNDE4YTRiZjQwZTdmMzNhZjE1OTAyZGVlYmU2MjAyZWEzNDRmODAz
|
|
15
|
+
MzY0MDQ1MzczMDRkMzQyMWU5MTMwZjE1MGJhNjkzZmMyODkwMzU=
|
data/README.md
CHANGED
|
@@ -215,6 +215,18 @@ Implement `changed_attributes` in your non-AR backed model
|
|
|
215
215
|
require 'netsuite_rails/spec/spec_helper'
|
|
216
216
|
```
|
|
217
217
|
|
|
218
|
+
Using the helpers:
|
|
219
|
+
|
|
220
|
+
```ruby
|
|
221
|
+
it 'does something' do
|
|
222
|
+
# setup...
|
|
223
|
+
|
|
224
|
+
# action
|
|
225
|
+
|
|
226
|
+
ns_customer = get_last_netsuite_object(NetSuite::Records::Customer)
|
|
227
|
+
end
|
|
228
|
+
```
|
|
229
|
+
|
|
218
230
|
# Syncing Using Rake Tasks
|
|
219
231
|
|
|
220
232
|
```ruby
|
data/netsuite_rails.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "netsuite_rails"
|
|
7
|
-
s.version = "0.3.
|
|
7
|
+
s.version = "0.3.2"
|
|
8
8
|
s.authors = ["Michael Bianco"]
|
|
9
9
|
s.email = ["mike@cliffsidemedia.com"]
|
|
10
10
|
s.summary = %q{Write Rails applications that integrate with NetSuite}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: netsuite_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Bianco
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: netsuite
|