salesforce_bulk icon indicating copy to clipboard operation
salesforce_bulk copied to clipboard

Simple Salesforce Bulk API interface

Results 19 salesforce_bulk issues
Sort by recently updated
recently updated
newest added

This PR contains a few pieces of general code cleanup, but also makes the gem threadsafe. The use of class variables in the Job and Connection classes could cause configuration...

Here are the changes: - add MIT License (kept the original copyright notices) - bump API version to 27.0 - separate HTTP and CSV handling - correctly handle Array values...

The entries pushed to salesforce for a multi-select pick list should be separated by ";"

We recently tried to upgrade to Ruby 2 (2.0 or 2.1) and found that it broke the salesforce_bulk gem. In particular an error already gets raised trying to login. ```...

Sometime in the past week it no longer accesses the SF sandbox. I think SF changed the URL so the #parse_instance regex no longer recognizes it. This monkeypatch makes it...

After this quarters salesforce update, the regex in connection.rb in parse_instance is incorrect. I forked to https://github.com/patchapps/salesforce_bulk and had to publish the gem as https://rubygems.org/gems/salesforce_bulk_quickfix to get us back online....

I cannot pass Array as argument. Example my account has picklist that accepts array as argument. MyPicklist__c => Array. But it takes array as string

I am having an issue authenticating. ``` ruby salesforce = SalesforceBulk::Api.new("[email protected]", "PasswordSecurityToken", true) ``` and the output is ``` RuntimeError: INVALID_LOGIN: Invalid username, password, security token; or user locked out....

The documentation should say "result.result.success?" instead of "result.success?", etc..