README.md in netsuite-0.4.8 vs README.md in netsuite-0.4.9
- old
+ new
@@ -1,6 +1,6 @@
-[![Build Status](https://travis-ci.org/NetSweet/netsuite.svg)](https://travis-ci.org/NetSweet/netsuite)
+[![Circle CI](https://circleci.com/gh/NetSweet/netsuite/tree/master.svg?style=svg)](https://circleci.com/gh/NetSweet/netsuite/tree/master)
# NetSuite Ruby SuiteTalk Gem
* This gem will act as a wrapper around the NetSuite SuiteTalk WebServices API. Wow, that is a mouthful.
* The gem does not cover the entire API, only the subset that we have found useful to cover so far.
@@ -411,5 +411,15 @@
'@recordType' => 'state'
}
})
states.to_array.first[:get_all_response][:get_all_result][:record_list][:record].map { |r| { country: r[:country], abbr: r[:shortname], name: r[:full_name] } }
```
+
+#### 2015_2 ApplicationId Support
+
+```ruby
+NetSuite::Configuration.soap_header = {
+ 'platformMsgs:ApplicationInfo' => {
+ 'platformMsgs:applicationId' => 'your-netsuite-app-id'
+ }
+}
+```
\ No newline at end of file