insightly2 0.1.4
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 +7 -0
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/README.md +113 -0
- data/Rakefile +6 -0
- data/config/gem_secret.yml.example +1 -0
- data/insightly2.gemspec +29 -0
- data/lib/insightly2/client.rb +54 -0
- data/lib/insightly2/dsl/comments.rb +47 -0
- data/lib/insightly2/dsl/contacts.rb +130 -0
- data/lib/insightly2/dsl/countries.rb +12 -0
- data/lib/insightly2/dsl/currencies.rb +12 -0
- data/lib/insightly2/dsl/custom_fields.rb +22 -0
- data/lib/insightly2/dsl/emails.rb +57 -0
- data/lib/insightly2/dsl/events.rb +52 -0
- data/lib/insightly2/dsl/file_attachments.rb +14 -0
- data/lib/insightly2/dsl/file_categories.rb +52 -0
- data/lib/insightly2/dsl/notes.rb +85 -0
- data/lib/insightly2/dsl/opportunities.rb +134 -0
- data/lib/insightly2/dsl/opportunity_categories.rb +52 -0
- data/lib/insightly2/dsl/opportunity_state_reasons.rb +12 -0
- data/lib/insightly2/dsl/organisations.rb +128 -0
- data/lib/insightly2/dsl/pipeline_stages.rb +22 -0
- data/lib/insightly2/dsl/pipelines.rb +22 -0
- data/lib/insightly2/dsl/project_categories.rb +52 -0
- data/lib/insightly2/dsl/projects.rb +129 -0
- data/lib/insightly2/dsl/relationships.rb +12 -0
- data/lib/insightly2/dsl/tags.rb +15 -0
- data/lib/insightly2/dsl/task_categories.rb +52 -0
- data/lib/insightly2/dsl/tasks.rb +76 -0
- data/lib/insightly2/dsl/team_members.rb +53 -0
- data/lib/insightly2/dsl/teams.rb +53 -0
- data/lib/insightly2/dsl/users.rb +22 -0
- data/lib/insightly2/dsl.rb +65 -0
- data/lib/insightly2/errors/client_error.rb +10 -0
- data/lib/insightly2/errors/resource_not_found_error.rb +8 -0
- data/lib/insightly2/errors.rb +10 -0
- data/lib/insightly2/resources/comment.rb +10 -0
- data/lib/insightly2/resources/contact.rb +8 -0
- data/lib/insightly2/resources/country.rb +8 -0
- data/lib/insightly2/resources/currency.rb +8 -0
- data/lib/insightly2/resources/custom_field.rb +8 -0
- data/lib/insightly2/resources/email.rb +8 -0
- data/lib/insightly2/resources/event.rb +8 -0
- data/lib/insightly2/resources/file_attachment.rb +8 -0
- data/lib/insightly2/resources/file_category.rb +8 -0
- data/lib/insightly2/resources/note.rb +8 -0
- data/lib/insightly2/resources/object/attributes.rb +71 -0
- data/lib/insightly2/resources/object/serializers.rb +102 -0
- data/lib/insightly2/resources/object.rb +29 -0
- data/lib/insightly2/resources/opportunity.rb +8 -0
- data/lib/insightly2/resources/opportunity_category.rb +8 -0
- data/lib/insightly2/resources/opportunity_state_reason.rb +8 -0
- data/lib/insightly2/resources/organisation.rb +8 -0
- data/lib/insightly2/resources/pipeline.rb +8 -0
- data/lib/insightly2/resources/pipeline_stage.rb +8 -0
- data/lib/insightly2/resources/project.rb +8 -0
- data/lib/insightly2/resources/project_category.rb +8 -0
- data/lib/insightly2/resources/relationship.rb +8 -0
- data/lib/insightly2/resources/tag.rb +8 -0
- data/lib/insightly2/resources/task.rb +8 -0
- data/lib/insightly2/resources/task_category.rb +8 -0
- data/lib/insightly2/resources/team.rb +8 -0
- data/lib/insightly2/resources/team_member.rb +8 -0
- data/lib/insightly2/resources/user.rb +8 -0
- data/lib/insightly2/resources.rb +33 -0
- data/lib/insightly2/utils/url_helper.rb +17 -0
- data/lib/insightly2/utils.rb +8 -0
- data/lib/insightly2/version.rb +3 -0
- data/lib/insightly2.rb +22 -0
- data/spec/fixtures/vcr_cassettes/create_comment_attachment.yml +42 -0
- data/spec/fixtures/vcr_cassettes/create_contact.yml +47 -0
- data/spec/fixtures/vcr_cassettes/create_contact_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/create_email_comment.yml +47 -0
- data/spec/fixtures/vcr_cassettes/create_event.yml +95 -0
- data/spec/fixtures/vcr_cassettes/create_file_category.yml +89 -0
- data/spec/fixtures/vcr_cassettes/create_note.yml +95 -0
- data/spec/fixtures/vcr_cassettes/create_note_comment.yml +47 -0
- data/spec/fixtures/vcr_cassettes/create_note_file.yml +42 -0
- data/spec/fixtures/vcr_cassettes/create_opportunity.yml +98 -0
- data/spec/fixtures/vcr_cassettes/create_opportunity_category.yml +89 -0
- data/spec/fixtures/vcr_cassettes/create_opportunity_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/create_organisation.yml +116 -0
- data/spec/fixtures/vcr_cassettes/create_organisation_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/create_project.yml +106 -0
- data/spec/fixtures/vcr_cassettes/create_project_category.yml +89 -0
- data/spec/fixtures/vcr_cassettes/create_project_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/create_task.yml +98 -0
- data/spec/fixtures/vcr_cassettes/create_task_category.yml +89 -0
- data/spec/fixtures/vcr_cassettes/create_task_comment.yml +47 -0
- data/spec/fixtures/vcr_cassettes/create_team.yml +92 -0
- data/spec/fixtures/vcr_cassettes/create_team_member.yml +89 -0
- data/spec/fixtures/vcr_cassettes/delete_comment.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_contact.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_contact_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_email.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_event.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_file_category.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_note.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_opportunity.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_opportunity_category.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_opportunity_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_organisation.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_organisation_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_project.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_project_category.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_project_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_task.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_task_category.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_team.yml +42 -0
- data/spec/fixtures/vcr_cassettes/delete_team_member.yml +42 -0
- data/spec/fixtures/vcr_cassettes/get_comment.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_contact.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_contact_emails.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_contact_image.yml +44 -0
- data/spec/fixtures/vcr_cassettes/get_contact_notes.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_contact_tasks.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_contacts.yml +184 -0
- data/spec/fixtures/vcr_cassettes/get_countries.yml +85 -0
- data/spec/fixtures/vcr_cassettes/get_currencies.yml +124 -0
- data/spec/fixtures/vcr_cassettes/get_custom_field.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_custom_fields.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_email.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_email_comments.yml +49 -0
- data/spec/fixtures/vcr_cassettes/get_emails.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_event.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_events.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_file_attachment.yml +4057 -0
- data/spec/fixtures/vcr_cassettes/get_file_categories.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_file_category.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_note.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_note_comments.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_notes.yml +52 -0
- data/spec/fixtures/vcr_cassettes/get_opportunities.yml +81 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity.yml +49 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity_categories.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity_category.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity_emails.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity_image.yml +44 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity_notes.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity_state_history.yml +83 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity_state_reasons.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_opportunity_tasks.yml +49 -0
- data/spec/fixtures/vcr_cassettes/get_organisation.yml +55 -0
- data/spec/fixtures/vcr_cassettes/get_organisation_emails.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_organisation_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/get_organisation_notes.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_organisation_tasks.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_organisations.yml +2092 -0
- data/spec/fixtures/vcr_cassettes/get_pipeline.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_pipeline_stage.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_pipeline_stages.yml +49 -0
- data/spec/fixtures/vcr_cassettes/get_pipelines.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_project.yml +52 -0
- data/spec/fixtures/vcr_cassettes/get_project_categories.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_project_category.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_project_emails.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_project_image.yml +44 -0
- data/spec/fixtures/vcr_cassettes/get_project_notes.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_project_tasks.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_projects.yml +52 -0
- data/spec/fixtures/vcr_cassettes/get_task.yml +49 -0
- data/spec/fixtures/vcr_cassettes/get_task_categories.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_task_category.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_task_comments.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_tasks.yml +148 -0
- data/spec/fixtures/vcr_cassettes/get_team.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_team_member.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_team_members.yml +46 -0
- data/spec/fixtures/vcr_cassettes/get_teams.yml +47 -0
- data/spec/fixtures/vcr_cassettes/get_user.yml +48 -0
- data/spec/fixtures/vcr_cassettes/get_users.yml +48 -0
- data/spec/fixtures/vcr_cassettes/update_comment.yml +97 -0
- data/spec/fixtures/vcr_cassettes/update_contact.yml +94 -0
- data/spec/fixtures/vcr_cassettes/update_contact_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/update_event.yml +97 -0
- data/spec/fixtures/vcr_cassettes/update_file_category.yml +91 -0
- data/spec/fixtures/vcr_cassettes/update_note.yml +100 -0
- data/spec/fixtures/vcr_cassettes/update_opportunity.yml +100 -0
- data/spec/fixtures/vcr_cassettes/update_opportunity_category.yml +91 -0
- data/spec/fixtures/vcr_cassettes/update_opportunity_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/update_organisation.yml +118 -0
- data/spec/fixtures/vcr_cassettes/update_organisation_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/update_project.yml +109 -0
- data/spec/fixtures/vcr_cassettes/update_project_category.yml +91 -0
- data/spec/fixtures/vcr_cassettes/update_project_image.yml +42 -0
- data/spec/fixtures/vcr_cassettes/update_task.yml +100 -0
- data/spec/fixtures/vcr_cassettes/update_task_category.yml +91 -0
- data/spec/fixtures/vcr_cassettes/update_team.yml +94 -0
- data/spec/fixtures/vcr_cassettes/update_team_member.yml +91 -0
- data/spec/fixtures/vcr_cassettes/z_insightly_client_status_check.yml +48 -0
- data/spec/insightly2/client_spec.rb +12 -0
- data/spec/insightly2/dsl/comments_spec.rb +45 -0
- data/spec/insightly2/dsl/contacts_spec.rb +130 -0
- data/spec/insightly2/dsl/countries_spec.rb +14 -0
- data/spec/insightly2/dsl/currencies_spec.rb +14 -0
- data/spec/insightly2/dsl/custom_fields_spec.rb +25 -0
- data/spec/insightly2/dsl/emails_spec.rb +56 -0
- data/spec/insightly2/dsl/events_spec.rb +55 -0
- data/spec/insightly2/dsl/file_attachments_spec.rb +15 -0
- data/spec/insightly2/dsl/file_categories_spec.rb +55 -0
- data/spec/insightly2/dsl/notes_spec.rb +86 -0
- data/spec/insightly2/dsl/opportunities_spec.rb +143 -0
- data/spec/insightly2/dsl/opportunity_categories_spec.rb +55 -0
- data/spec/insightly2/dsl/opportunity_state_reasons_spec.rb +14 -0
- data/spec/insightly2/dsl/organisations_spec.rb +131 -0
- data/spec/insightly2/dsl/pipeline_stages_spec.rb +25 -0
- data/spec/insightly2/dsl/pipelines_spec.rb +25 -0
- data/spec/insightly2/dsl/project_categories_spec.rb +55 -0
- data/spec/insightly2/dsl/projects_spec.rb +131 -0
- data/spec/insightly2/dsl/task_categories_spec.rb +55 -0
- data/spec/insightly2/dsl/tasks_spec.rb +75 -0
- data/spec/insightly2/dsl/team_members_spec.rb +56 -0
- data/spec/insightly2/dsl/teams_spec.rb +55 -0
- data/spec/insightly2/dsl/users_spec.rb +25 -0
- data/spec/insightly2/resources/comment_spec.rb +27 -0
- data/spec/insightly2/resources/contact_spec.rb +28 -0
- data/spec/insightly2/resources/custom_field_spec.rb +22 -0
- data/spec/insightly2/resources/email_spec.rb +29 -0
- data/spec/insightly2/resources/event_spec.rb +29 -0
- data/spec/insightly2/resources/file_attachment_spec.rb +31 -0
- data/spec/insightly2/resources/file_category_spec.rb +21 -0
- data/spec/insightly2/resources/note_spec.rb +29 -0
- data/spec/insightly2/resources/opportunity_category_spec.rb +21 -0
- data/spec/insightly2/resources/opportunity_spec.rb +30 -0
- data/spec/insightly2/resources/organisation_spec.rb +29 -0
- data/spec/insightly2/resources/pipeline_spec.rb +21 -0
- data/spec/insightly2/resources/pipeline_stage_spec.rb +21 -0
- data/spec/insightly2/resources/project_category_spec.rb +21 -0
- data/spec/insightly2/resources/project_spec.rb +30 -0
- data/spec/insightly2/resources/task_category_spec.rb +21 -0
- data/spec/insightly2/resources/task_spec.rb +32 -0
- data/spec/insightly2/resources/team_member_spec.rb +21 -0
- data/spec/insightly2/resources/team_spec.rb +27 -0
- data/spec/insightly2/resources/user_spec.rb +29 -0
- data/spec/insightly2_spec.rb +15 -0
- data/spec/spec_helper.rb +20 -0
- metadata +551 -0
metadata
ADDED
|
@@ -0,0 +1,551 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: insightly2
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.4
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Alexander Semyonov
|
|
8
|
+
- Michael Kompanets
|
|
9
|
+
- David Iorns
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
date: 2015-01-03 00:00:00.000000000 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: faraday
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
requirements:
|
|
19
|
+
- - ">="
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '0'
|
|
29
|
+
- !ruby/object:Gem::Dependency
|
|
30
|
+
name: activesupport
|
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '0'
|
|
36
|
+
type: :runtime
|
|
37
|
+
prerelease: false
|
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '0'
|
|
43
|
+
- !ruby/object:Gem::Dependency
|
|
44
|
+
name: bundler
|
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - "~>"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '1.6'
|
|
50
|
+
type: :development
|
|
51
|
+
prerelease: false
|
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - "~>"
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: '1.6'
|
|
57
|
+
- !ruby/object:Gem::Dependency
|
|
58
|
+
name: rake
|
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
|
60
|
+
requirements:
|
|
61
|
+
- - "~>"
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: '10.0'
|
|
64
|
+
type: :development
|
|
65
|
+
prerelease: false
|
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
67
|
+
requirements:
|
|
68
|
+
- - "~>"
|
|
69
|
+
- !ruby/object:Gem::Version
|
|
70
|
+
version: '10.0'
|
|
71
|
+
- !ruby/object:Gem::Dependency
|
|
72
|
+
name: rspec
|
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - "~>"
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: 3.0.0
|
|
78
|
+
type: :development
|
|
79
|
+
prerelease: false
|
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
81
|
+
requirements:
|
|
82
|
+
- - "~>"
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: 3.0.0
|
|
85
|
+
- !ruby/object:Gem::Dependency
|
|
86
|
+
name: webmock
|
|
87
|
+
requirement: !ruby/object:Gem::Requirement
|
|
88
|
+
requirements:
|
|
89
|
+
- - "~>"
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
version: 1.18.0
|
|
92
|
+
type: :development
|
|
93
|
+
prerelease: false
|
|
94
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
95
|
+
requirements:
|
|
96
|
+
- - "~>"
|
|
97
|
+
- !ruby/object:Gem::Version
|
|
98
|
+
version: 1.18.0
|
|
99
|
+
- !ruby/object:Gem::Dependency
|
|
100
|
+
name: vcr
|
|
101
|
+
requirement: !ruby/object:Gem::Requirement
|
|
102
|
+
requirements:
|
|
103
|
+
- - ">="
|
|
104
|
+
- !ruby/object:Gem::Version
|
|
105
|
+
version: '0'
|
|
106
|
+
type: :development
|
|
107
|
+
prerelease: false
|
|
108
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
109
|
+
requirements:
|
|
110
|
+
- - ">="
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: '0'
|
|
113
|
+
description:
|
|
114
|
+
email:
|
|
115
|
+
- al@semyonov.us
|
|
116
|
+
- michael@scienceexchange.com
|
|
117
|
+
- david@scienceexchange.com
|
|
118
|
+
executables: []
|
|
119
|
+
extensions: []
|
|
120
|
+
extra_rdoc_files: []
|
|
121
|
+
files:
|
|
122
|
+
- ".gitignore"
|
|
123
|
+
- ".rspec"
|
|
124
|
+
- ".travis.yml"
|
|
125
|
+
- Gemfile
|
|
126
|
+
- README.md
|
|
127
|
+
- Rakefile
|
|
128
|
+
- config/gem_secret.yml.example
|
|
129
|
+
- insightly2.gemspec
|
|
130
|
+
- lib/insightly2.rb
|
|
131
|
+
- lib/insightly2/client.rb
|
|
132
|
+
- lib/insightly2/dsl.rb
|
|
133
|
+
- lib/insightly2/dsl/comments.rb
|
|
134
|
+
- lib/insightly2/dsl/contacts.rb
|
|
135
|
+
- lib/insightly2/dsl/countries.rb
|
|
136
|
+
- lib/insightly2/dsl/currencies.rb
|
|
137
|
+
- lib/insightly2/dsl/custom_fields.rb
|
|
138
|
+
- lib/insightly2/dsl/emails.rb
|
|
139
|
+
- lib/insightly2/dsl/events.rb
|
|
140
|
+
- lib/insightly2/dsl/file_attachments.rb
|
|
141
|
+
- lib/insightly2/dsl/file_categories.rb
|
|
142
|
+
- lib/insightly2/dsl/notes.rb
|
|
143
|
+
- lib/insightly2/dsl/opportunities.rb
|
|
144
|
+
- lib/insightly2/dsl/opportunity_categories.rb
|
|
145
|
+
- lib/insightly2/dsl/opportunity_state_reasons.rb
|
|
146
|
+
- lib/insightly2/dsl/organisations.rb
|
|
147
|
+
- lib/insightly2/dsl/pipeline_stages.rb
|
|
148
|
+
- lib/insightly2/dsl/pipelines.rb
|
|
149
|
+
- lib/insightly2/dsl/project_categories.rb
|
|
150
|
+
- lib/insightly2/dsl/projects.rb
|
|
151
|
+
- lib/insightly2/dsl/relationships.rb
|
|
152
|
+
- lib/insightly2/dsl/tags.rb
|
|
153
|
+
- lib/insightly2/dsl/task_categories.rb
|
|
154
|
+
- lib/insightly2/dsl/tasks.rb
|
|
155
|
+
- lib/insightly2/dsl/team_members.rb
|
|
156
|
+
- lib/insightly2/dsl/teams.rb
|
|
157
|
+
- lib/insightly2/dsl/users.rb
|
|
158
|
+
- lib/insightly2/errors.rb
|
|
159
|
+
- lib/insightly2/errors/client_error.rb
|
|
160
|
+
- lib/insightly2/errors/resource_not_found_error.rb
|
|
161
|
+
- lib/insightly2/resources.rb
|
|
162
|
+
- lib/insightly2/resources/comment.rb
|
|
163
|
+
- lib/insightly2/resources/contact.rb
|
|
164
|
+
- lib/insightly2/resources/country.rb
|
|
165
|
+
- lib/insightly2/resources/currency.rb
|
|
166
|
+
- lib/insightly2/resources/custom_field.rb
|
|
167
|
+
- lib/insightly2/resources/email.rb
|
|
168
|
+
- lib/insightly2/resources/event.rb
|
|
169
|
+
- lib/insightly2/resources/file_attachment.rb
|
|
170
|
+
- lib/insightly2/resources/file_category.rb
|
|
171
|
+
- lib/insightly2/resources/note.rb
|
|
172
|
+
- lib/insightly2/resources/object.rb
|
|
173
|
+
- lib/insightly2/resources/object/attributes.rb
|
|
174
|
+
- lib/insightly2/resources/object/serializers.rb
|
|
175
|
+
- lib/insightly2/resources/opportunity.rb
|
|
176
|
+
- lib/insightly2/resources/opportunity_category.rb
|
|
177
|
+
- lib/insightly2/resources/opportunity_state_reason.rb
|
|
178
|
+
- lib/insightly2/resources/organisation.rb
|
|
179
|
+
- lib/insightly2/resources/pipeline.rb
|
|
180
|
+
- lib/insightly2/resources/pipeline_stage.rb
|
|
181
|
+
- lib/insightly2/resources/project.rb
|
|
182
|
+
- lib/insightly2/resources/project_category.rb
|
|
183
|
+
- lib/insightly2/resources/relationship.rb
|
|
184
|
+
- lib/insightly2/resources/tag.rb
|
|
185
|
+
- lib/insightly2/resources/task.rb
|
|
186
|
+
- lib/insightly2/resources/task_category.rb
|
|
187
|
+
- lib/insightly2/resources/team.rb
|
|
188
|
+
- lib/insightly2/resources/team_member.rb
|
|
189
|
+
- lib/insightly2/resources/user.rb
|
|
190
|
+
- lib/insightly2/utils.rb
|
|
191
|
+
- lib/insightly2/utils/url_helper.rb
|
|
192
|
+
- lib/insightly2/version.rb
|
|
193
|
+
- spec/fixtures/vcr_cassettes/create_comment_attachment.yml
|
|
194
|
+
- spec/fixtures/vcr_cassettes/create_contact.yml
|
|
195
|
+
- spec/fixtures/vcr_cassettes/create_contact_image.yml
|
|
196
|
+
- spec/fixtures/vcr_cassettes/create_email_comment.yml
|
|
197
|
+
- spec/fixtures/vcr_cassettes/create_event.yml
|
|
198
|
+
- spec/fixtures/vcr_cassettes/create_file_category.yml
|
|
199
|
+
- spec/fixtures/vcr_cassettes/create_note.yml
|
|
200
|
+
- spec/fixtures/vcr_cassettes/create_note_comment.yml
|
|
201
|
+
- spec/fixtures/vcr_cassettes/create_note_file.yml
|
|
202
|
+
- spec/fixtures/vcr_cassettes/create_opportunity.yml
|
|
203
|
+
- spec/fixtures/vcr_cassettes/create_opportunity_category.yml
|
|
204
|
+
- spec/fixtures/vcr_cassettes/create_opportunity_image.yml
|
|
205
|
+
- spec/fixtures/vcr_cassettes/create_organisation.yml
|
|
206
|
+
- spec/fixtures/vcr_cassettes/create_organisation_image.yml
|
|
207
|
+
- spec/fixtures/vcr_cassettes/create_project.yml
|
|
208
|
+
- spec/fixtures/vcr_cassettes/create_project_category.yml
|
|
209
|
+
- spec/fixtures/vcr_cassettes/create_project_image.yml
|
|
210
|
+
- spec/fixtures/vcr_cassettes/create_task.yml
|
|
211
|
+
- spec/fixtures/vcr_cassettes/create_task_category.yml
|
|
212
|
+
- spec/fixtures/vcr_cassettes/create_task_comment.yml
|
|
213
|
+
- spec/fixtures/vcr_cassettes/create_team.yml
|
|
214
|
+
- spec/fixtures/vcr_cassettes/create_team_member.yml
|
|
215
|
+
- spec/fixtures/vcr_cassettes/delete_comment.yml
|
|
216
|
+
- spec/fixtures/vcr_cassettes/delete_contact.yml
|
|
217
|
+
- spec/fixtures/vcr_cassettes/delete_contact_image.yml
|
|
218
|
+
- spec/fixtures/vcr_cassettes/delete_email.yml
|
|
219
|
+
- spec/fixtures/vcr_cassettes/delete_event.yml
|
|
220
|
+
- spec/fixtures/vcr_cassettes/delete_file_category.yml
|
|
221
|
+
- spec/fixtures/vcr_cassettes/delete_note.yml
|
|
222
|
+
- spec/fixtures/vcr_cassettes/delete_opportunity.yml
|
|
223
|
+
- spec/fixtures/vcr_cassettes/delete_opportunity_category.yml
|
|
224
|
+
- spec/fixtures/vcr_cassettes/delete_opportunity_image.yml
|
|
225
|
+
- spec/fixtures/vcr_cassettes/delete_organisation.yml
|
|
226
|
+
- spec/fixtures/vcr_cassettes/delete_organisation_image.yml
|
|
227
|
+
- spec/fixtures/vcr_cassettes/delete_project.yml
|
|
228
|
+
- spec/fixtures/vcr_cassettes/delete_project_category.yml
|
|
229
|
+
- spec/fixtures/vcr_cassettes/delete_project_image.yml
|
|
230
|
+
- spec/fixtures/vcr_cassettes/delete_task.yml
|
|
231
|
+
- spec/fixtures/vcr_cassettes/delete_task_category.yml
|
|
232
|
+
- spec/fixtures/vcr_cassettes/delete_team.yml
|
|
233
|
+
- spec/fixtures/vcr_cassettes/delete_team_member.yml
|
|
234
|
+
- spec/fixtures/vcr_cassettes/get_comment.yml
|
|
235
|
+
- spec/fixtures/vcr_cassettes/get_contact.yml
|
|
236
|
+
- spec/fixtures/vcr_cassettes/get_contact_emails.yml
|
|
237
|
+
- spec/fixtures/vcr_cassettes/get_contact_image.yml
|
|
238
|
+
- spec/fixtures/vcr_cassettes/get_contact_notes.yml
|
|
239
|
+
- spec/fixtures/vcr_cassettes/get_contact_tasks.yml
|
|
240
|
+
- spec/fixtures/vcr_cassettes/get_contacts.yml
|
|
241
|
+
- spec/fixtures/vcr_cassettes/get_countries.yml
|
|
242
|
+
- spec/fixtures/vcr_cassettes/get_currencies.yml
|
|
243
|
+
- spec/fixtures/vcr_cassettes/get_custom_field.yml
|
|
244
|
+
- spec/fixtures/vcr_cassettes/get_custom_fields.yml
|
|
245
|
+
- spec/fixtures/vcr_cassettes/get_email.yml
|
|
246
|
+
- spec/fixtures/vcr_cassettes/get_email_comments.yml
|
|
247
|
+
- spec/fixtures/vcr_cassettes/get_emails.yml
|
|
248
|
+
- spec/fixtures/vcr_cassettes/get_event.yml
|
|
249
|
+
- spec/fixtures/vcr_cassettes/get_events.yml
|
|
250
|
+
- spec/fixtures/vcr_cassettes/get_file_attachment.yml
|
|
251
|
+
- spec/fixtures/vcr_cassettes/get_file_categories.yml
|
|
252
|
+
- spec/fixtures/vcr_cassettes/get_file_category.yml
|
|
253
|
+
- spec/fixtures/vcr_cassettes/get_note.yml
|
|
254
|
+
- spec/fixtures/vcr_cassettes/get_note_comments.yml
|
|
255
|
+
- spec/fixtures/vcr_cassettes/get_notes.yml
|
|
256
|
+
- spec/fixtures/vcr_cassettes/get_opportunities.yml
|
|
257
|
+
- spec/fixtures/vcr_cassettes/get_opportunity.yml
|
|
258
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_categories.yml
|
|
259
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_category.yml
|
|
260
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_emails.yml
|
|
261
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_image.yml
|
|
262
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_notes.yml
|
|
263
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_state_history.yml
|
|
264
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_state_reasons.yml
|
|
265
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_tasks.yml
|
|
266
|
+
- spec/fixtures/vcr_cassettes/get_organisation.yml
|
|
267
|
+
- spec/fixtures/vcr_cassettes/get_organisation_emails.yml
|
|
268
|
+
- spec/fixtures/vcr_cassettes/get_organisation_image.yml
|
|
269
|
+
- spec/fixtures/vcr_cassettes/get_organisation_notes.yml
|
|
270
|
+
- spec/fixtures/vcr_cassettes/get_organisation_tasks.yml
|
|
271
|
+
- spec/fixtures/vcr_cassettes/get_organisations.yml
|
|
272
|
+
- spec/fixtures/vcr_cassettes/get_pipeline.yml
|
|
273
|
+
- spec/fixtures/vcr_cassettes/get_pipeline_stage.yml
|
|
274
|
+
- spec/fixtures/vcr_cassettes/get_pipeline_stages.yml
|
|
275
|
+
- spec/fixtures/vcr_cassettes/get_pipelines.yml
|
|
276
|
+
- spec/fixtures/vcr_cassettes/get_project.yml
|
|
277
|
+
- spec/fixtures/vcr_cassettes/get_project_categories.yml
|
|
278
|
+
- spec/fixtures/vcr_cassettes/get_project_category.yml
|
|
279
|
+
- spec/fixtures/vcr_cassettes/get_project_emails.yml
|
|
280
|
+
- spec/fixtures/vcr_cassettes/get_project_image.yml
|
|
281
|
+
- spec/fixtures/vcr_cassettes/get_project_notes.yml
|
|
282
|
+
- spec/fixtures/vcr_cassettes/get_project_tasks.yml
|
|
283
|
+
- spec/fixtures/vcr_cassettes/get_projects.yml
|
|
284
|
+
- spec/fixtures/vcr_cassettes/get_task.yml
|
|
285
|
+
- spec/fixtures/vcr_cassettes/get_task_categories.yml
|
|
286
|
+
- spec/fixtures/vcr_cassettes/get_task_category.yml
|
|
287
|
+
- spec/fixtures/vcr_cassettes/get_task_comments.yml
|
|
288
|
+
- spec/fixtures/vcr_cassettes/get_tasks.yml
|
|
289
|
+
- spec/fixtures/vcr_cassettes/get_team.yml
|
|
290
|
+
- spec/fixtures/vcr_cassettes/get_team_member.yml
|
|
291
|
+
- spec/fixtures/vcr_cassettes/get_team_members.yml
|
|
292
|
+
- spec/fixtures/vcr_cassettes/get_teams.yml
|
|
293
|
+
- spec/fixtures/vcr_cassettes/get_user.yml
|
|
294
|
+
- spec/fixtures/vcr_cassettes/get_users.yml
|
|
295
|
+
- spec/fixtures/vcr_cassettes/update_comment.yml
|
|
296
|
+
- spec/fixtures/vcr_cassettes/update_contact.yml
|
|
297
|
+
- spec/fixtures/vcr_cassettes/update_contact_image.yml
|
|
298
|
+
- spec/fixtures/vcr_cassettes/update_event.yml
|
|
299
|
+
- spec/fixtures/vcr_cassettes/update_file_category.yml
|
|
300
|
+
- spec/fixtures/vcr_cassettes/update_note.yml
|
|
301
|
+
- spec/fixtures/vcr_cassettes/update_opportunity.yml
|
|
302
|
+
- spec/fixtures/vcr_cassettes/update_opportunity_category.yml
|
|
303
|
+
- spec/fixtures/vcr_cassettes/update_opportunity_image.yml
|
|
304
|
+
- spec/fixtures/vcr_cassettes/update_organisation.yml
|
|
305
|
+
- spec/fixtures/vcr_cassettes/update_organisation_image.yml
|
|
306
|
+
- spec/fixtures/vcr_cassettes/update_project.yml
|
|
307
|
+
- spec/fixtures/vcr_cassettes/update_project_category.yml
|
|
308
|
+
- spec/fixtures/vcr_cassettes/update_project_image.yml
|
|
309
|
+
- spec/fixtures/vcr_cassettes/update_task.yml
|
|
310
|
+
- spec/fixtures/vcr_cassettes/update_task_category.yml
|
|
311
|
+
- spec/fixtures/vcr_cassettes/update_team.yml
|
|
312
|
+
- spec/fixtures/vcr_cassettes/update_team_member.yml
|
|
313
|
+
- spec/fixtures/vcr_cassettes/z_insightly_client_status_check.yml
|
|
314
|
+
- spec/insightly2/client_spec.rb
|
|
315
|
+
- spec/insightly2/dsl/comments_spec.rb
|
|
316
|
+
- spec/insightly2/dsl/contacts_spec.rb
|
|
317
|
+
- spec/insightly2/dsl/countries_spec.rb
|
|
318
|
+
- spec/insightly2/dsl/currencies_spec.rb
|
|
319
|
+
- spec/insightly2/dsl/custom_fields_spec.rb
|
|
320
|
+
- spec/insightly2/dsl/emails_spec.rb
|
|
321
|
+
- spec/insightly2/dsl/events_spec.rb
|
|
322
|
+
- spec/insightly2/dsl/file_attachments_spec.rb
|
|
323
|
+
- spec/insightly2/dsl/file_categories_spec.rb
|
|
324
|
+
- spec/insightly2/dsl/notes_spec.rb
|
|
325
|
+
- spec/insightly2/dsl/opportunities_spec.rb
|
|
326
|
+
- spec/insightly2/dsl/opportunity_categories_spec.rb
|
|
327
|
+
- spec/insightly2/dsl/opportunity_state_reasons_spec.rb
|
|
328
|
+
- spec/insightly2/dsl/organisations_spec.rb
|
|
329
|
+
- spec/insightly2/dsl/pipeline_stages_spec.rb
|
|
330
|
+
- spec/insightly2/dsl/pipelines_spec.rb
|
|
331
|
+
- spec/insightly2/dsl/project_categories_spec.rb
|
|
332
|
+
- spec/insightly2/dsl/projects_spec.rb
|
|
333
|
+
- spec/insightly2/dsl/task_categories_spec.rb
|
|
334
|
+
- spec/insightly2/dsl/tasks_spec.rb
|
|
335
|
+
- spec/insightly2/dsl/team_members_spec.rb
|
|
336
|
+
- spec/insightly2/dsl/teams_spec.rb
|
|
337
|
+
- spec/insightly2/dsl/users_spec.rb
|
|
338
|
+
- spec/insightly2/resources/comment_spec.rb
|
|
339
|
+
- spec/insightly2/resources/contact_spec.rb
|
|
340
|
+
- spec/insightly2/resources/custom_field_spec.rb
|
|
341
|
+
- spec/insightly2/resources/email_spec.rb
|
|
342
|
+
- spec/insightly2/resources/event_spec.rb
|
|
343
|
+
- spec/insightly2/resources/file_attachment_spec.rb
|
|
344
|
+
- spec/insightly2/resources/file_category_spec.rb
|
|
345
|
+
- spec/insightly2/resources/note_spec.rb
|
|
346
|
+
- spec/insightly2/resources/opportunity_category_spec.rb
|
|
347
|
+
- spec/insightly2/resources/opportunity_spec.rb
|
|
348
|
+
- spec/insightly2/resources/organisation_spec.rb
|
|
349
|
+
- spec/insightly2/resources/pipeline_spec.rb
|
|
350
|
+
- spec/insightly2/resources/pipeline_stage_spec.rb
|
|
351
|
+
- spec/insightly2/resources/project_category_spec.rb
|
|
352
|
+
- spec/insightly2/resources/project_spec.rb
|
|
353
|
+
- spec/insightly2/resources/task_category_spec.rb
|
|
354
|
+
- spec/insightly2/resources/task_spec.rb
|
|
355
|
+
- spec/insightly2/resources/team_member_spec.rb
|
|
356
|
+
- spec/insightly2/resources/team_spec.rb
|
|
357
|
+
- spec/insightly2/resources/user_spec.rb
|
|
358
|
+
- spec/insightly2_spec.rb
|
|
359
|
+
- spec/spec_helper.rb
|
|
360
|
+
homepage: https://github.com/insightly/ruby
|
|
361
|
+
licenses: []
|
|
362
|
+
metadata: {}
|
|
363
|
+
post_install_message:
|
|
364
|
+
rdoc_options: []
|
|
365
|
+
require_paths:
|
|
366
|
+
- lib
|
|
367
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
368
|
+
requirements:
|
|
369
|
+
- - ">="
|
|
370
|
+
- !ruby/object:Gem::Version
|
|
371
|
+
version: 2.0.0
|
|
372
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
373
|
+
requirements:
|
|
374
|
+
- - ">="
|
|
375
|
+
- !ruby/object:Gem::Version
|
|
376
|
+
version: '0'
|
|
377
|
+
requirements: []
|
|
378
|
+
rubyforge_project:
|
|
379
|
+
rubygems_version: 2.4.4
|
|
380
|
+
signing_key:
|
|
381
|
+
specification_version: 4
|
|
382
|
+
summary: A Ruby wrapper for the Insightly v2.1 API https://api.insight.ly/v2.1/Help
|
|
383
|
+
test_files:
|
|
384
|
+
- spec/fixtures/vcr_cassettes/create_comment_attachment.yml
|
|
385
|
+
- spec/fixtures/vcr_cassettes/create_contact.yml
|
|
386
|
+
- spec/fixtures/vcr_cassettes/create_contact_image.yml
|
|
387
|
+
- spec/fixtures/vcr_cassettes/create_email_comment.yml
|
|
388
|
+
- spec/fixtures/vcr_cassettes/create_event.yml
|
|
389
|
+
- spec/fixtures/vcr_cassettes/create_file_category.yml
|
|
390
|
+
- spec/fixtures/vcr_cassettes/create_note.yml
|
|
391
|
+
- spec/fixtures/vcr_cassettes/create_note_comment.yml
|
|
392
|
+
- spec/fixtures/vcr_cassettes/create_note_file.yml
|
|
393
|
+
- spec/fixtures/vcr_cassettes/create_opportunity.yml
|
|
394
|
+
- spec/fixtures/vcr_cassettes/create_opportunity_category.yml
|
|
395
|
+
- spec/fixtures/vcr_cassettes/create_opportunity_image.yml
|
|
396
|
+
- spec/fixtures/vcr_cassettes/create_organisation.yml
|
|
397
|
+
- spec/fixtures/vcr_cassettes/create_organisation_image.yml
|
|
398
|
+
- spec/fixtures/vcr_cassettes/create_project.yml
|
|
399
|
+
- spec/fixtures/vcr_cassettes/create_project_category.yml
|
|
400
|
+
- spec/fixtures/vcr_cassettes/create_project_image.yml
|
|
401
|
+
- spec/fixtures/vcr_cassettes/create_task.yml
|
|
402
|
+
- spec/fixtures/vcr_cassettes/create_task_category.yml
|
|
403
|
+
- spec/fixtures/vcr_cassettes/create_task_comment.yml
|
|
404
|
+
- spec/fixtures/vcr_cassettes/create_team.yml
|
|
405
|
+
- spec/fixtures/vcr_cassettes/create_team_member.yml
|
|
406
|
+
- spec/fixtures/vcr_cassettes/delete_comment.yml
|
|
407
|
+
- spec/fixtures/vcr_cassettes/delete_contact.yml
|
|
408
|
+
- spec/fixtures/vcr_cassettes/delete_contact_image.yml
|
|
409
|
+
- spec/fixtures/vcr_cassettes/delete_email.yml
|
|
410
|
+
- spec/fixtures/vcr_cassettes/delete_event.yml
|
|
411
|
+
- spec/fixtures/vcr_cassettes/delete_file_category.yml
|
|
412
|
+
- spec/fixtures/vcr_cassettes/delete_note.yml
|
|
413
|
+
- spec/fixtures/vcr_cassettes/delete_opportunity.yml
|
|
414
|
+
- spec/fixtures/vcr_cassettes/delete_opportunity_category.yml
|
|
415
|
+
- spec/fixtures/vcr_cassettes/delete_opportunity_image.yml
|
|
416
|
+
- spec/fixtures/vcr_cassettes/delete_organisation.yml
|
|
417
|
+
- spec/fixtures/vcr_cassettes/delete_organisation_image.yml
|
|
418
|
+
- spec/fixtures/vcr_cassettes/delete_project.yml
|
|
419
|
+
- spec/fixtures/vcr_cassettes/delete_project_category.yml
|
|
420
|
+
- spec/fixtures/vcr_cassettes/delete_project_image.yml
|
|
421
|
+
- spec/fixtures/vcr_cassettes/delete_task.yml
|
|
422
|
+
- spec/fixtures/vcr_cassettes/delete_task_category.yml
|
|
423
|
+
- spec/fixtures/vcr_cassettes/delete_team.yml
|
|
424
|
+
- spec/fixtures/vcr_cassettes/delete_team_member.yml
|
|
425
|
+
- spec/fixtures/vcr_cassettes/get_comment.yml
|
|
426
|
+
- spec/fixtures/vcr_cassettes/get_contact.yml
|
|
427
|
+
- spec/fixtures/vcr_cassettes/get_contact_emails.yml
|
|
428
|
+
- spec/fixtures/vcr_cassettes/get_contact_image.yml
|
|
429
|
+
- spec/fixtures/vcr_cassettes/get_contact_notes.yml
|
|
430
|
+
- spec/fixtures/vcr_cassettes/get_contact_tasks.yml
|
|
431
|
+
- spec/fixtures/vcr_cassettes/get_contacts.yml
|
|
432
|
+
- spec/fixtures/vcr_cassettes/get_countries.yml
|
|
433
|
+
- spec/fixtures/vcr_cassettes/get_currencies.yml
|
|
434
|
+
- spec/fixtures/vcr_cassettes/get_custom_field.yml
|
|
435
|
+
- spec/fixtures/vcr_cassettes/get_custom_fields.yml
|
|
436
|
+
- spec/fixtures/vcr_cassettes/get_email.yml
|
|
437
|
+
- spec/fixtures/vcr_cassettes/get_email_comments.yml
|
|
438
|
+
- spec/fixtures/vcr_cassettes/get_emails.yml
|
|
439
|
+
- spec/fixtures/vcr_cassettes/get_event.yml
|
|
440
|
+
- spec/fixtures/vcr_cassettes/get_events.yml
|
|
441
|
+
- spec/fixtures/vcr_cassettes/get_file_attachment.yml
|
|
442
|
+
- spec/fixtures/vcr_cassettes/get_file_categories.yml
|
|
443
|
+
- spec/fixtures/vcr_cassettes/get_file_category.yml
|
|
444
|
+
- spec/fixtures/vcr_cassettes/get_note.yml
|
|
445
|
+
- spec/fixtures/vcr_cassettes/get_note_comments.yml
|
|
446
|
+
- spec/fixtures/vcr_cassettes/get_notes.yml
|
|
447
|
+
- spec/fixtures/vcr_cassettes/get_opportunities.yml
|
|
448
|
+
- spec/fixtures/vcr_cassettes/get_opportunity.yml
|
|
449
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_categories.yml
|
|
450
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_category.yml
|
|
451
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_emails.yml
|
|
452
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_image.yml
|
|
453
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_notes.yml
|
|
454
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_state_history.yml
|
|
455
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_state_reasons.yml
|
|
456
|
+
- spec/fixtures/vcr_cassettes/get_opportunity_tasks.yml
|
|
457
|
+
- spec/fixtures/vcr_cassettes/get_organisation.yml
|
|
458
|
+
- spec/fixtures/vcr_cassettes/get_organisation_emails.yml
|
|
459
|
+
- spec/fixtures/vcr_cassettes/get_organisation_image.yml
|
|
460
|
+
- spec/fixtures/vcr_cassettes/get_organisation_notes.yml
|
|
461
|
+
- spec/fixtures/vcr_cassettes/get_organisation_tasks.yml
|
|
462
|
+
- spec/fixtures/vcr_cassettes/get_organisations.yml
|
|
463
|
+
- spec/fixtures/vcr_cassettes/get_pipeline.yml
|
|
464
|
+
- spec/fixtures/vcr_cassettes/get_pipeline_stage.yml
|
|
465
|
+
- spec/fixtures/vcr_cassettes/get_pipeline_stages.yml
|
|
466
|
+
- spec/fixtures/vcr_cassettes/get_pipelines.yml
|
|
467
|
+
- spec/fixtures/vcr_cassettes/get_project.yml
|
|
468
|
+
- spec/fixtures/vcr_cassettes/get_project_categories.yml
|
|
469
|
+
- spec/fixtures/vcr_cassettes/get_project_category.yml
|
|
470
|
+
- spec/fixtures/vcr_cassettes/get_project_emails.yml
|
|
471
|
+
- spec/fixtures/vcr_cassettes/get_project_image.yml
|
|
472
|
+
- spec/fixtures/vcr_cassettes/get_project_notes.yml
|
|
473
|
+
- spec/fixtures/vcr_cassettes/get_project_tasks.yml
|
|
474
|
+
- spec/fixtures/vcr_cassettes/get_projects.yml
|
|
475
|
+
- spec/fixtures/vcr_cassettes/get_task.yml
|
|
476
|
+
- spec/fixtures/vcr_cassettes/get_task_categories.yml
|
|
477
|
+
- spec/fixtures/vcr_cassettes/get_task_category.yml
|
|
478
|
+
- spec/fixtures/vcr_cassettes/get_task_comments.yml
|
|
479
|
+
- spec/fixtures/vcr_cassettes/get_tasks.yml
|
|
480
|
+
- spec/fixtures/vcr_cassettes/get_team.yml
|
|
481
|
+
- spec/fixtures/vcr_cassettes/get_team_member.yml
|
|
482
|
+
- spec/fixtures/vcr_cassettes/get_team_members.yml
|
|
483
|
+
- spec/fixtures/vcr_cassettes/get_teams.yml
|
|
484
|
+
- spec/fixtures/vcr_cassettes/get_user.yml
|
|
485
|
+
- spec/fixtures/vcr_cassettes/get_users.yml
|
|
486
|
+
- spec/fixtures/vcr_cassettes/update_comment.yml
|
|
487
|
+
- spec/fixtures/vcr_cassettes/update_contact.yml
|
|
488
|
+
- spec/fixtures/vcr_cassettes/update_contact_image.yml
|
|
489
|
+
- spec/fixtures/vcr_cassettes/update_event.yml
|
|
490
|
+
- spec/fixtures/vcr_cassettes/update_file_category.yml
|
|
491
|
+
- spec/fixtures/vcr_cassettes/update_note.yml
|
|
492
|
+
- spec/fixtures/vcr_cassettes/update_opportunity.yml
|
|
493
|
+
- spec/fixtures/vcr_cassettes/update_opportunity_category.yml
|
|
494
|
+
- spec/fixtures/vcr_cassettes/update_opportunity_image.yml
|
|
495
|
+
- spec/fixtures/vcr_cassettes/update_organisation.yml
|
|
496
|
+
- spec/fixtures/vcr_cassettes/update_organisation_image.yml
|
|
497
|
+
- spec/fixtures/vcr_cassettes/update_project.yml
|
|
498
|
+
- spec/fixtures/vcr_cassettes/update_project_category.yml
|
|
499
|
+
- spec/fixtures/vcr_cassettes/update_project_image.yml
|
|
500
|
+
- spec/fixtures/vcr_cassettes/update_task.yml
|
|
501
|
+
- spec/fixtures/vcr_cassettes/update_task_category.yml
|
|
502
|
+
- spec/fixtures/vcr_cassettes/update_team.yml
|
|
503
|
+
- spec/fixtures/vcr_cassettes/update_team_member.yml
|
|
504
|
+
- spec/fixtures/vcr_cassettes/z_insightly_client_status_check.yml
|
|
505
|
+
- spec/insightly2/client_spec.rb
|
|
506
|
+
- spec/insightly2/dsl/comments_spec.rb
|
|
507
|
+
- spec/insightly2/dsl/contacts_spec.rb
|
|
508
|
+
- spec/insightly2/dsl/countries_spec.rb
|
|
509
|
+
- spec/insightly2/dsl/currencies_spec.rb
|
|
510
|
+
- spec/insightly2/dsl/custom_fields_spec.rb
|
|
511
|
+
- spec/insightly2/dsl/emails_spec.rb
|
|
512
|
+
- spec/insightly2/dsl/events_spec.rb
|
|
513
|
+
- spec/insightly2/dsl/file_attachments_spec.rb
|
|
514
|
+
- spec/insightly2/dsl/file_categories_spec.rb
|
|
515
|
+
- spec/insightly2/dsl/notes_spec.rb
|
|
516
|
+
- spec/insightly2/dsl/opportunities_spec.rb
|
|
517
|
+
- spec/insightly2/dsl/opportunity_categories_spec.rb
|
|
518
|
+
- spec/insightly2/dsl/opportunity_state_reasons_spec.rb
|
|
519
|
+
- spec/insightly2/dsl/organisations_spec.rb
|
|
520
|
+
- spec/insightly2/dsl/pipeline_stages_spec.rb
|
|
521
|
+
- spec/insightly2/dsl/pipelines_spec.rb
|
|
522
|
+
- spec/insightly2/dsl/project_categories_spec.rb
|
|
523
|
+
- spec/insightly2/dsl/projects_spec.rb
|
|
524
|
+
- spec/insightly2/dsl/task_categories_spec.rb
|
|
525
|
+
- spec/insightly2/dsl/tasks_spec.rb
|
|
526
|
+
- spec/insightly2/dsl/team_members_spec.rb
|
|
527
|
+
- spec/insightly2/dsl/teams_spec.rb
|
|
528
|
+
- spec/insightly2/dsl/users_spec.rb
|
|
529
|
+
- spec/insightly2/resources/comment_spec.rb
|
|
530
|
+
- spec/insightly2/resources/contact_spec.rb
|
|
531
|
+
- spec/insightly2/resources/custom_field_spec.rb
|
|
532
|
+
- spec/insightly2/resources/email_spec.rb
|
|
533
|
+
- spec/insightly2/resources/event_spec.rb
|
|
534
|
+
- spec/insightly2/resources/file_attachment_spec.rb
|
|
535
|
+
- spec/insightly2/resources/file_category_spec.rb
|
|
536
|
+
- spec/insightly2/resources/note_spec.rb
|
|
537
|
+
- spec/insightly2/resources/opportunity_category_spec.rb
|
|
538
|
+
- spec/insightly2/resources/opportunity_spec.rb
|
|
539
|
+
- spec/insightly2/resources/organisation_spec.rb
|
|
540
|
+
- spec/insightly2/resources/pipeline_spec.rb
|
|
541
|
+
- spec/insightly2/resources/pipeline_stage_spec.rb
|
|
542
|
+
- spec/insightly2/resources/project_category_spec.rb
|
|
543
|
+
- spec/insightly2/resources/project_spec.rb
|
|
544
|
+
- spec/insightly2/resources/task_category_spec.rb
|
|
545
|
+
- spec/insightly2/resources/task_spec.rb
|
|
546
|
+
- spec/insightly2/resources/team_member_spec.rb
|
|
547
|
+
- spec/insightly2/resources/team_spec.rb
|
|
548
|
+
- spec/insightly2/resources/user_spec.rb
|
|
549
|
+
- spec/insightly2_spec.rb
|
|
550
|
+
- spec/spec_helper.rb
|
|
551
|
+
has_rdoc:
|