salesforce_http_client 0.1.2 → 0.1.3
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/.coveralls.yml +1 -0
- data/README.md +4 -0
- data/lib/salesforce_http_client/version.rb +1 -1
- data/salesforce_http_client.gemspec +1 -0
- data/spec/spec_helper.rb +3 -0
- metadata +17 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c38ff36a429e3f256e1afe166e9a3fb200c21a0
|
|
4
|
+
data.tar.gz: 5e6e4e779c1cc7e7d9d105938b9a1f46ee455f89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 137985ed6c8b5f5f95c741e973a01201dc4a8020cce47d70d4436a17a48c201817b276df545ed9b972f6d4d79d1e48cba96e6e1b2131a3c47c83550b96ed3d34
|
|
7
|
+
data.tar.gz: 09827e7788467bf5f7670fa58d0fc9f613f5cc355045919c2b4e713c8861622c1f3546dd5927f62b28c2af9dd18d86f0bcf737ca057164eea53f136c7ef01791
|
data/.coveralls.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
service_name: travis-ci
|
data/README.md
CHANGED
|
@@ -6,6 +6,10 @@ It works well with any ruby applications, include such as Ruby on Rails.
|
|
|
6
6
|
You can access salesfore.com using only your sales force login id (=email) and password.
|
|
7
7
|
A security token is no need.
|
|
8
8
|
|
|
9
|
+
[](http://badge.fury.io/rb/salesforce_http_client)
|
|
10
|
+
[](https://travis-ci.org/apuruni/salesforce_http_client)
|
|
11
|
+
[](https://coveralls.io/r/apuruni/salesforce_http_client?branch=master)
|
|
12
|
+
|
|
9
13
|
## Installation
|
|
10
14
|
|
|
11
15
|
Add this line to your application's Gemfile:
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: salesforce_http_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Apuruni
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-01-
|
|
11
|
+
date: 2015-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httpclient
|
|
@@ -164,6 +164,20 @@ dependencies:
|
|
|
164
164
|
- - ">="
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
166
|
version: '0'
|
|
167
|
+
- !ruby/object:Gem::Dependency
|
|
168
|
+
name: coveralls
|
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - ">="
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '0'
|
|
174
|
+
type: :development
|
|
175
|
+
prerelease: false
|
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - ">="
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: '0'
|
|
167
181
|
description: This gem provides a simple way to download report data from salesforce.com.
|
|
168
182
|
It works well with any ruby applications, include such as Ruby on Rails.You can
|
|
169
183
|
access salesfore.com using only your sales force login id (=email) and password.
|
|
@@ -174,6 +188,7 @@ executables: []
|
|
|
174
188
|
extensions: []
|
|
175
189
|
extra_rdoc_files: []
|
|
176
190
|
files:
|
|
191
|
+
- ".coveralls.yml"
|
|
177
192
|
- ".gitignore"
|
|
178
193
|
- ".rspec"
|
|
179
194
|
- ".rubocop.yml"
|