bitrix24_cloud_api 0.1.0
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 +10 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/bitrix24_cloud_api.iml +19 -0
- data/.idea/misc.xml +29 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +998 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +115 -0
- data/Rakefile +14 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bitrix24_cloud_api.gemspec +35 -0
- data/lib/bitrix24_cloud_api/CRM/activity.rb +16 -0
- data/lib/bitrix24_cloud_api/CRM/additional_entities.rb +63 -0
- data/lib/bitrix24_cloud_api/CRM/catalog.rb +9 -0
- data/lib/bitrix24_cloud_api/CRM/company.rb +16 -0
- data/lib/bitrix24_cloud_api/CRM/contact.rb +16 -0
- data/lib/bitrix24_cloud_api/CRM/currency.rb +16 -0
- data/lib/bitrix24_cloud_api/CRM/deal.rb +22 -0
- data/lib/bitrix24_cloud_api/CRM/invoice.rb +6 -0
- data/lib/bitrix24_cloud_api/CRM/invoice_status.rb +6 -0
- data/lib/bitrix24_cloud_api/CRM/lead.rb +16 -0
- data/lib/bitrix24_cloud_api/CRM/product.rb +6 -0
- data/lib/bitrix24_cloud_api/CRM/product_section.rb +6 -0
- data/lib/bitrix24_cloud_api/CRM/quote.rb +16 -0
- data/lib/bitrix24_cloud_api/base.rb +20 -0
- data/lib/bitrix24_cloud_api/client.rb +111 -0
- data/lib/bitrix24_cloud_api/crm.rb +32 -0
- data/lib/bitrix24_cloud_api/version.rb +3 -0
- data/lib/bitrix24_cloud_api.rb +8 -0
- metadata +151 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 84085ace187be8919be8a75f9504323d4de260c0
|
4
|
+
data.tar.gz: d122f691d8b5703228acdf08c12575b89d52f6e0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0e04975c75b6df639cd8ac3bb685d00e19b6ee8335f181c2cdb1e92a72492c2b63c7095cb4800e9375d8fc57c69d8442c6d38af213acbe6db7b55d330dcaffad
|
7
|
+
data.tar.gz: e1a79ab3a3b32bf317727afffe3e58757b0819fd008c7ae4e734992fd8ca734b584ed560b5d1c4daa259a7a49439662c27e38423083233253fd5a96d9d3e7e39
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
bitrix24_cloud_api
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake" /></Settings>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="FacetManager">
|
4
|
+
<facet type="gem" name="Ruby Gem">
|
5
|
+
<configuration>
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="" />
|
9
|
+
</configuration>
|
10
|
+
</facet>
|
11
|
+
</component>
|
12
|
+
<component name="NewModuleRootManager">
|
13
|
+
<content url="file://$MODULE_DIR$" />
|
14
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-2.3.1 [global]" jdkType="RUBY_SDK" />
|
15
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.12.4, RVM: ruby-2.3.1 [global]) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.3.1 [global]) [gem]" level="application" />
|
18
|
+
</component>
|
19
|
+
</module>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
4
|
+
<OptionsSetting value="true" id="Add" />
|
5
|
+
<OptionsSetting value="true" id="Remove" />
|
6
|
+
<OptionsSetting value="true" id="Checkout" />
|
7
|
+
<OptionsSetting value="true" id="Update" />
|
8
|
+
<OptionsSetting value="true" id="Status" />
|
9
|
+
<OptionsSetting value="true" id="Edit" />
|
10
|
+
<ConfirmationsSetting value="0" id="Add" />
|
11
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
12
|
+
</component>
|
13
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-1.9.3-p551 [global]" project-jdk-type="RUBY_SDK" />
|
14
|
+
<component name="masterDetails">
|
15
|
+
<states>
|
16
|
+
<state key="ScopeChooserConfigurable.UI">
|
17
|
+
<settings>
|
18
|
+
<splitter-proportions>
|
19
|
+
<option name="proportions">
|
20
|
+
<list>
|
21
|
+
<option value="0.2" />
|
22
|
+
</list>
|
23
|
+
</option>
|
24
|
+
</splitter-proportions>
|
25
|
+
</settings>
|
26
|
+
</state>
|
27
|
+
</states>
|
28
|
+
</component>
|
29
|
+
</project>
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/bitrix24_cloud_api.iml" filepath="$PROJECT_DIR$/.idea/bitrix24_cloud_api.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|