rd_person 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2379185bbea14e6371f038af7a29da33208ef6ae
4
+ data.tar.gz: 8dae252b281bcbb997a48a10510e7764928ee98b
5
+ SHA512:
6
+ metadata.gz: dce8ffada2d11c8e3f8051825b2ce108acecc510e0d7e81c190ea1499006f8d2f4913c41ac349c970e6879bf7a7a9c42e58cf7b28f342b5026025b837ecc60e0
7
+ data.tar.gz: 187eaaf66322b91a867725644f98f5e7dca62d7bd7fcb38f3cbf64f802aa4d09267e5de7d99f858abf4ef4296aeca0cac1d44aa770127f4eb770f08f6992ba99
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rd_person.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,44 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ rd_person (0.0.1)
5
+ restforce (~> 1.4.3)
6
+ rspec (~> 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ diff-lcs (1.2.5)
12
+ faraday (0.8.9)
13
+ multipart-post (~> 1.2.0)
14
+ faraday_middleware (0.9.1)
15
+ faraday (>= 0.7.4, < 0.10)
16
+ hashie (2.0.5)
17
+ json (1.8.1)
18
+ multipart-post (1.2.0)
19
+ rake (10.3.2)
20
+ restforce (1.4.3)
21
+ faraday (~> 0.8.4)
22
+ faraday_middleware (>= 0.8.8)
23
+ hashie (>= 1.2.0, < 2.1)
24
+ json (>= 1.7.5, < 1.9.0)
25
+ rspec (3.0.0)
26
+ rspec-core (~> 3.0.0)
27
+ rspec-expectations (~> 3.0.0)
28
+ rspec-mocks (~> 3.0.0)
29
+ rspec-core (3.0.3)
30
+ rspec-support (~> 3.0.0)
31
+ rspec-expectations (3.0.3)
32
+ diff-lcs (>= 1.2.0, < 2.0)
33
+ rspec-support (~> 3.0.0)
34
+ rspec-mocks (3.0.3)
35
+ rspec-support (~> 3.0.0)
36
+ rspec-support (3.0.3)
37
+
38
+ PLATFORMS
39
+ ruby
40
+
41
+ DEPENDENCIES
42
+ bundler (~> 1.6)
43
+ rake
44
+ rd_person!
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 alessandrostein
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # RdPerson
2
+
3
+ This Gem integrates a new person with SalesForce CRM using restforce as dependency.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'rd_person'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install rd_person
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/rd_person/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,15 @@
1
+ class Person
2
+
3
+ def initialize(new_name, new_last_name, new_email, new_company, new_job_title, new_phone, new_website)
4
+ @name = new_name
5
+ @last_name = new_last_name
6
+ @email = new_email
7
+ @company = new_company
8
+ @job_title = new_job_title
9
+ @phone = new_phone
10
+ @website = new_website
11
+ end
12
+
13
+ attr_accessor :name, :last_name, :email, :company, :job_title, :phone, :website
14
+
15
+ end # class Person
@@ -0,0 +1,26 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/Person')
2
+ require 'restforce'
3
+
4
+ class SalesforceClient
5
+
6
+ def initialize()
7
+
8
+ @credential = Restforce.new :username => '',
9
+ :password => '',
10
+ :security_token => '',
11
+ :client_id => '',
12
+ :client_secret => ''
13
+ end
14
+
15
+ def create(person)
16
+ attributes = { FirstName: person.name,
17
+ LastName: person.last_name,
18
+ Email: person.email,
19
+ Company: person.company,
20
+ Title: person.job_title,
21
+ Phone: person.phone,
22
+ Website: person.website
23
+ }
24
+ @credential.create!('Lead', attributes)
25
+ end
26
+ end
@@ -0,0 +1,3 @@
1
+ module RdPerson
2
+ VERSION = "0.0.1"
3
+ end
data/lib/rd_person.rb ADDED
@@ -0,0 +1,8 @@
1
+
2
+ require "rd_person/version"
3
+ require "rd_person/person"
4
+ require "rd_person/persnDAO"
5
+
6
+ module RdPerson
7
+ end
8
+
Binary file
data/rd_person.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rd_person/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rd_person"
8
+ spec.version = RdPerson::VERSION
9
+ spec.authors = ["alessandrostein"]
10
+ spec.email = ["alessandro@alessandrostein.com"]
11
+ spec.summary = 'Test for RD Station'
12
+ spec.description = ''
13
+ spec.homepage = "https://rubygems.org/gems/rd_person"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+
24
+ spec.add_dependency "restforce", "~> 1.4.3"
25
+ spec.add_dependency "rspec", "~> 3.0.0"
26
+ end
@@ -0,0 +1,21 @@
1
+ require '../lib/rd_person/Person'
2
+
3
+ describe '#person' do
4
+
5
+ before do
6
+ @new_person = Person.new("Alessandro", "Stein", "alessandro@alessandrostein.com", "Resultados Digitais",
7
+ "Developer", "+55 47 0000 0000", "www.alessandrostein.com")
8
+ end
9
+
10
+ context 'Check a new person' do
11
+ it 'returns "True"' do
12
+ @new_person.name::should == "Alessandro"
13
+ @new_person.last_name::should == "Stein"
14
+ @new_person.email::should == "alessandro@alessandrostein.com"
15
+ @new_person.company::should == "Resultados Digitais"
16
+ @new_person.job_title::should == "Developer"
17
+ @new_person.phone::should == "+55 47 0000 0000"
18
+ @new_person.website.should == "www.alessandrostein.com"
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,19 @@
1
+ require '../lib/rd_person/SalesforceClient'
2
+ require '../lib/rd_person/Person'
3
+
4
+ describe '#SalesforceClient' do
5
+
6
+ before do
7
+ @new_salesforceclient = SalesforceClient.new
8
+ end
9
+
10
+ context 'Create a new Lead' do
11
+ it 'returns "ID"' do
12
+ person = Person.new("Alessandro", "Stein", "alessandro@alessandrostein.com", "Resultados Digitais",
13
+ "Developer", "+55 47 0000 0000", "www.alessandrostein.com")
14
+
15
+ @new_salesforceclient.create(person)
16
+ end
17
+ end
18
+
19
+ end
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rd_person
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - alessandrostein
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: restforce
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.4.3
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.4.3
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 3.0.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 3.0.0
69
+ description: ''
70
+ email:
71
+ - alessandro@alessandrostein.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - Gemfile
77
+ - Gemfile.lock
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - lib/rd_person.rb
82
+ - lib/rd_person/Person.rb
83
+ - lib/rd_person/SalesforceClient.rb
84
+ - lib/rd_person/version.rb
85
+ - pkg/rd_person-0.0.1.gem
86
+ - rd_person.gemspec
87
+ - spec/person_spec.rb
88
+ - spec/salesforceclient_spec.rb
89
+ homepage: https://rubygems.org/gems/rd_person
90
+ licenses:
91
+ - MIT
92
+ metadata: {}
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.2.2
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: Test for RD Station
113
+ test_files:
114
+ - spec/person_spec.rb
115
+ - spec/salesforceclient_spec.rb