leadsf 0.0.1 → 0.0.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/Gemfile +1 -1
- data/README.md +7 -2
- data/leadsf.gemspec +3 -0
- data/lib/leadsf.rb +1 -1
- data/lib/leadsf/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f91d9474d1a4ec9dd1533af371cc9c15da20412
|
|
4
|
+
data.tar.gz: 918cb2dc449b3ec2bd7998fba35561ce45e65d9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a109b2bd3fea328107e222815965a4bdd3f9f46e0e1ca7c7ae066b181af3c389dae2e795e104c72036b857593cc9c916e4ed5deb90309bd6b6834560bcbb64f8
|
|
7
|
+
data.tar.gz: f02f0591afdc06f4712df728220fb329af00f1e9331a027be13ee05741d0de175538c740604c0c55b7fb831cf213c3b77b375a9f568d59dfb0914603541af380
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Leadsf
|
|
2
2
|
|
|
3
|
-
_A ruby gem for work with the
|
|
3
|
+
_A ruby gem for work with the **Salesforce Leads** using [Salesforce REST api](http://www.salesforce.com/us/developer/docs/api_rest/index.htm) with [Force Gem](https://github.com/heroku/force.rb)._
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -18,11 +18,16 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
Leadsf is designed to work with a basic structure of Salesforce Leads
|
|
21
|
+
Leadsf is designed to work with a basic structure of **Salesforce Leads**
|
|
22
|
+
```
|
|
23
|
+
{Id, FirstName, LastName, Email, Company, Title, Phone, Website}
|
|
24
|
+
```
|
|
25
|
+
|
|
22
26
|
|
|
23
27
|
### Initialization
|
|
24
28
|
|
|
25
29
|
```ruby
|
|
30
|
+
# Use your Salesforce Data
|
|
26
31
|
leadsf = Leadsf.set(username, password, security_token, client_id, client_secret)
|
|
27
32
|
```
|
|
28
33
|
|
data/leadsf.gemspec
CHANGED
data/lib/leadsf.rb
CHANGED
data/lib/leadsf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: leadsf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luigi Bertaco Cristofolini
|
|
@@ -150,6 +150,20 @@ dependencies:
|
|
|
150
150
|
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: '0'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: force
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - ">="
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0'
|
|
160
|
+
type: :runtime
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - ">="
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '0'
|
|
153
167
|
description: Gem to manipulate data of Leads on SalesForce using another gems
|
|
154
168
|
email:
|
|
155
169
|
- luigibertaco@gmail.com
|