sinesp_client_v2 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/.gitignore +1 -0
- data/Gemfile.lock +1 -1
- data/README.md +20 -10
- data/lib/sinesp_client_v2/version.rb +1 -1
- data/sinesp_client_v2.gemspec +1 -1
- metadata +2 -9
- data/.idea/.rakeTasks +0 -7
- data/.idea/misc.xml +0 -4
- data/.idea/modules.xml +0 -8
- data/.idea/sinesp_client_v2.iml +0 -21
- data/.idea/vcs.xml +0 -6
- data/.idea/workspace.xml +0 -316
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c231c34b08222d9e711e1e85a1382fca97a91e5ca22291945c055ed1a9ae13f
|
4
|
+
data.tar.gz: 4cfd7ec1a17d44e3f7bdc5a7793e7aa83a4242c107eadce85ee2b94c2d7976af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14632d5133a3ab5e8c8e59b6453738139674d5a7f4916893e8fe5c712046d5b9ff34d75016479373c228e81ca29ab3de8a00c5626224dc2967dc0fde439275a3
|
7
|
+
data.tar.gz: 5b97a0169e41da944775ed0cc3cc6b3309ac468f10f152a703296b9e904f8c5107450cd376e137eac5ff4ece8abb4ffdcbcd1b9cfed978cb130004cc9ce35a4f
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,11 @@
|
|
1
|
-
# SinespClientV2
|
2
1
|
|
3
|
-
|
2
|
+
# Ruby Sinesp Client V2
|
4
3
|
|
5
|
-
|
4
|
+
This gem provides a client for searching vehicle data based on the license plate from Sinesp database. This data is publicly available at https://www.sinesp.gov.br/sinesp-cidadao. The gem just makes it easier to fetch results, through the same endpoint used by the mobile app.
|
5
|
+
|
6
|
+
For a python version, please check this: https://github.com/victor-torres/sinesp-client
|
7
|
+
|
8
|
+
Inspirated by [Original gem](https://github.com/fabianoarruda/sinesp_client)
|
6
9
|
|
7
10
|
## Installation
|
8
11
|
|
@@ -22,22 +25,29 @@ Or install it yourself as:
|
|
22
25
|
|
23
26
|
## Usage
|
24
27
|
|
25
|
-
|
28
|
+
```ruby
|
29
|
+
require "sinesp_client_v2"
|
30
|
+
SinespClient.search 'ABC1234'
|
31
|
+
```
|
32
|
+
|
33
|
+
Returns a hash with basic vehicle data.
|
34
|
+
|
35
|
+
## Limitations
|
36
|
+
|
37
|
+
Sinesp seems to block connections originated from outside of Brazil. TODO: make the gem work with proxy.
|
26
38
|
|
27
39
|
## Development
|
28
40
|
|
29
41
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
42
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
43
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
32
44
|
|
33
45
|
## Contributing
|
34
46
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
47
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/aschiavon91/sinesp_client.
|
36
48
|
|
37
|
-
## License
|
38
49
|
|
39
|
-
|
50
|
+
## License
|
40
51
|
|
41
|
-
|
52
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
42
53
|
|
43
|
-
Everyone interacting in the SinespClientV2 project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/sinesp_client_v2/blob/master/CODE_OF_CONDUCT.md).
|
data/sinesp_client_v2.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["aschiavon91@gmail.com"]
|
11
11
|
|
12
12
|
spec.summary = "Another version of sinesp client gem"
|
13
|
-
spec.description = "Usage: include sinesp_client_v2 and call SinespClientV2.search(
|
13
|
+
spec.description = "Usage: include sinesp_client_v2 and call SinespClientV2.search('ABC1234')"
|
14
14
|
spec.homepage = "https://github.com/aschiavon91/sinesp_client"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinesp_client_v2
|
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
|
- Antonio Schiavon
|
@@ -66,8 +66,7 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 0.15.6
|
69
|
-
description: 'Usage: include sinesp_client_v2 and call SinespClientV2.search(
|
70
|
-
''ABC1234'')'
|
69
|
+
description: 'Usage: include sinesp_client_v2 and call SinespClientV2.search(''ABC1234'')'
|
71
70
|
email:
|
72
71
|
- aschiavon91@gmail.com
|
73
72
|
executables: []
|
@@ -75,12 +74,6 @@ extensions: []
|
|
75
74
|
extra_rdoc_files: []
|
76
75
|
files:
|
77
76
|
- ".gitignore"
|
78
|
-
- ".idea/.rakeTasks"
|
79
|
-
- ".idea/misc.xml"
|
80
|
-
- ".idea/modules.xml"
|
81
|
-
- ".idea/sinesp_client_v2.iml"
|
82
|
-
- ".idea/vcs.xml"
|
83
|
-
- ".idea/workspace.xml"
|
84
77
|
- ".rspec"
|
85
78
|
- ".travis.yml"
|
86
79
|
- CODE_OF_CONDUCT.md
|
data/.idea/.rakeTasks
DELETED
@@ -1,7 +0,0 @@
|
|
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"><RakeTask description="Build sinesp_client_v2-0.1.0.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated files" fullCmd="clobber" taksId="clobber" /><RakeTask description="Build and install sinesp_client_v2-0.1.0.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install sinesp_client_v2-0.1.0.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v0.1.0 and build and push sinesp_client_v2-0.1.0.gem to TODO: Set to 'http://rubygems.com'" fullCmd="release[remote]" taksId="release[remote]" /><RakeTask description="Run RSpec code examples" fullCmd="spec" taksId="spec" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
|
data/.idea/misc.xml
DELETED
data/.idea/modules.xml
DELETED
@@ -1,8 +0,0 @@
|
|
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/sinesp_client_v2.iml" filepath="$PROJECT_DIR$/.idea/sinesp_client_v2.iml" />
|
6
|
-
</modules>
|
7
|
-
</component>
|
8
|
-
</project>
|
data/.idea/sinesp_client_v2.iml
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="ModuleRunConfigurationManager">
|
4
|
-
<shared />
|
5
|
-
</component>
|
6
|
-
<component name="NewModuleRootManager">
|
7
|
-
<content url="file://$MODULE_DIR$" />
|
8
|
-
<orderEntry type="inheritedJdk" />
|
9
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.16.0, RVM: ruby-2.3.4) [gem]" level="application" />
|
11
|
-
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.3.4) [gem]" level="application" />
|
12
|
-
<orderEntry type="library" scope="PROVIDED" name="httparty (v0.15.6, RVM: ruby-2.3.4) [gem]" level="application" />
|
13
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_xml (v0.6.0, RVM: ruby-2.3.4) [gem]" level="application" />
|
14
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, RVM: ruby-2.3.4) [gem]" level="application" />
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.7.0, RVM: ruby-2.3.4) [gem]" level="application" />
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.7.0, RVM: ruby-2.3.4) [gem]" level="application" />
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.7.0, RVM: ruby-2.3.4) [gem]" level="application" />
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.7.0, RVM: ruby-2.3.4) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.7.0, RVM: ruby-2.3.4) [gem]" level="application" />
|
20
|
-
</component>
|
21
|
-
</module>
|
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,316 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="5f62f4a2-2d7f-4a75-84ca-26df92f1a4ef" name="Default" comment="">
|
5
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/sinesp_client_v2-0.1.0.gem" afterPath="$PROJECT_DIR$/sinesp_client_v2-0.1.0.gem" />
|
6
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
7
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Gemfile.lock" afterPath="$PROJECT_DIR$/Gemfile.lock" />
|
8
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/sinesp_client_v2.rb" afterPath="$PROJECT_DIR$/lib/sinesp_client_v2.rb" />
|
9
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/sinesp_client_v2/version.rb" afterPath="$PROJECT_DIR$/lib/sinesp_client_v2/version.rb" />
|
10
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/sinesp_client_v2.gemspec" afterPath="$PROJECT_DIR$/sinesp_client_v2.gemspec" />
|
11
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/spec/sinesp_client_v2_spec.rb" afterPath="$PROJECT_DIR$/spec/sinesp_client_v2_spec.rb" />
|
12
|
-
</list>
|
13
|
-
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
14
|
-
<option name="TRACKING_ENABLED" value="true" />
|
15
|
-
<option name="SHOW_DIALOG" value="false" />
|
16
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
17
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
18
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
19
|
-
</component>
|
20
|
-
<component name="FileEditorManager">
|
21
|
-
<leaf>
|
22
|
-
<file leaf-file-name="README.md" pinned="false" current-in-tab="false">
|
23
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
24
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
25
|
-
<state split_layout="SPLIT">
|
26
|
-
<first_editor relative-caret-position="-21">
|
27
|
-
<caret line="20" column="6" lean-forward="false" selection-start-line="20" selection-start-column="6" selection-end-line="20" selection-end-column="34" />
|
28
|
-
<folding />
|
29
|
-
</first_editor>
|
30
|
-
<second_editor />
|
31
|
-
</state>
|
32
|
-
</provider>
|
33
|
-
</entry>
|
34
|
-
</file>
|
35
|
-
<file leaf-file-name="sinesp_client_v2.gemspec" pinned="false" current-in-tab="false">
|
36
|
-
<entry file="file://$PROJECT_DIR$/sinesp_client_v2.gemspec">
|
37
|
-
<provider selected="true" editor-type-id="text-editor">
|
38
|
-
<state relative-caret-position="252">
|
39
|
-
<caret line="30" column="74" lean-forward="true" selection-start-line="30" selection-start-column="74" selection-end-line="30" selection-end-column="74" />
|
40
|
-
<folding />
|
41
|
-
</state>
|
42
|
-
</provider>
|
43
|
-
</entry>
|
44
|
-
</file>
|
45
|
-
<file leaf-file-name="version.rb" pinned="false" current-in-tab="true">
|
46
|
-
<entry file="file://$PROJECT_DIR$/lib/sinesp_client_v2/version.rb">
|
47
|
-
<provider selected="true" editor-type-id="text-editor">
|
48
|
-
<state relative-caret-position="21">
|
49
|
-
<caret line="1" column="18" lean-forward="false" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
50
|
-
<folding />
|
51
|
-
</state>
|
52
|
-
</provider>
|
53
|
-
</entry>
|
54
|
-
</file>
|
55
|
-
</leaf>
|
56
|
-
</component>
|
57
|
-
<component name="FindInProjectRecents">
|
58
|
-
<findStrings>
|
59
|
-
<find>v2</find>
|
60
|
-
<find>sinesp_client</find>
|
61
|
-
<find>sinespcli</find>
|
62
|
-
<find>sinesp_</find>
|
63
|
-
<find>sinespc</find>
|
64
|
-
<find>sinespcl</find>
|
65
|
-
</findStrings>
|
66
|
-
</component>
|
67
|
-
<component name="Git.Settings">
|
68
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
69
|
-
</component>
|
70
|
-
<component name="IdeDocumentHistory">
|
71
|
-
<option name="CHANGED_PATHS">
|
72
|
-
<list>
|
73
|
-
<option value="$PROJECT_DIR$/lib/sinesp_client_v2.rb" />
|
74
|
-
<option value="$PROJECT_DIR$/spec/sinesp_client_v2_spec.rb" />
|
75
|
-
<option value="$PROJECT_DIR$/sinesp_client_v2.gemspec" />
|
76
|
-
<option value="$PROJECT_DIR$/lib/sinesp_client_v2/version.rb" />
|
77
|
-
</list>
|
78
|
-
</option>
|
79
|
-
</component>
|
80
|
-
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
81
|
-
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
82
|
-
<component name="JsGulpfileManager">
|
83
|
-
<detection-done>true</detection-done>
|
84
|
-
<sorting>DEFINITION_ORDER</sorting>
|
85
|
-
</component>
|
86
|
-
<component name="ProjectFrameBounds" extendedState="6">
|
87
|
-
<option name="y" value="32" />
|
88
|
-
<option name="width" value="1356" />
|
89
|
-
<option name="height" value="738" />
|
90
|
-
</component>
|
91
|
-
<component name="ProjectView">
|
92
|
-
<navigator currentView="ProjectPane" proportions="" version="1">
|
93
|
-
<flattenPackages />
|
94
|
-
<showMembers />
|
95
|
-
<showModules />
|
96
|
-
<showLibraryContents />
|
97
|
-
<hideEmptyPackages />
|
98
|
-
<abbreviatePackageNames />
|
99
|
-
<autoscrollToSource />
|
100
|
-
<autoscrollFromSource ProjectPane="true" />
|
101
|
-
<sortByType />
|
102
|
-
<manualOrder />
|
103
|
-
<foldersAlwaysOnTop value="true" />
|
104
|
-
</navigator>
|
105
|
-
<panes>
|
106
|
-
<pane id="ProjectPane">
|
107
|
-
<subPane>
|
108
|
-
<expand>
|
109
|
-
<path>
|
110
|
-
<item name="sinesp_client_v2" type="b2602c69:ProjectViewProjectNode" />
|
111
|
-
<item name="sinesp_client_v2" type="462c0819:PsiDirectoryNode" />
|
112
|
-
</path>
|
113
|
-
<path>
|
114
|
-
<item name="sinesp_client_v2" type="b2602c69:ProjectViewProjectNode" />
|
115
|
-
<item name="sinesp_client_v2" type="462c0819:PsiDirectoryNode" />
|
116
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
117
|
-
</path>
|
118
|
-
<path>
|
119
|
-
<item name="sinesp_client_v2" type="b2602c69:ProjectViewProjectNode" />
|
120
|
-
<item name="sinesp_client_v2" type="462c0819:PsiDirectoryNode" />
|
121
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
122
|
-
<item name="sinesp_client_v2" type="462c0819:PsiDirectoryNode" />
|
123
|
-
</path>
|
124
|
-
<path>
|
125
|
-
<item name="sinesp_client_v2" type="b2602c69:ProjectViewProjectNode" />
|
126
|
-
<item name="sinesp_client_v2" type="462c0819:PsiDirectoryNode" />
|
127
|
-
<item name="spec" type="462c0819:PsiDirectoryNode" />
|
128
|
-
</path>
|
129
|
-
</expand>
|
130
|
-
<select />
|
131
|
-
</subPane>
|
132
|
-
</pane>
|
133
|
-
<pane id="Scope" />
|
134
|
-
<pane id="Scratches" />
|
135
|
-
</panes>
|
136
|
-
</component>
|
137
|
-
<component name="PropertiesComponent">
|
138
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
139
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
140
|
-
</component>
|
141
|
-
<component name="RunDashboard">
|
142
|
-
<option name="ruleStates">
|
143
|
-
<list>
|
144
|
-
<RuleState>
|
145
|
-
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
146
|
-
</RuleState>
|
147
|
-
<RuleState>
|
148
|
-
<option name="name" value="StatusDashboardGroupingRule" />
|
149
|
-
</RuleState>
|
150
|
-
</list>
|
151
|
-
</option>
|
152
|
-
</component>
|
153
|
-
<component name="ShelveChangesManager" show_recycled="false">
|
154
|
-
<option name="remove_strategy" value="false" />
|
155
|
-
</component>
|
156
|
-
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
157
|
-
<component name="TaskManager">
|
158
|
-
<task active="true" id="Default" summary="Default task">
|
159
|
-
<changelist id="5f62f4a2-2d7f-4a75-84ca-26df92f1a4ef" name="Default" comment="" />
|
160
|
-
<created>1510848493376</created>
|
161
|
-
<option name="number" value="Default" />
|
162
|
-
<option name="presentableId" value="Default" />
|
163
|
-
<updated>1510848493376</updated>
|
164
|
-
<workItem from="1510848494583" duration="1637000" />
|
165
|
-
</task>
|
166
|
-
<servers />
|
167
|
-
</component>
|
168
|
-
<component name="TimeTrackingManager">
|
169
|
-
<option name="totallyTimeSpent" value="1637000" />
|
170
|
-
</component>
|
171
|
-
<component name="ToolWindowManager">
|
172
|
-
<frame x="0" y="32" width="1366" height="738" extended-state="6" />
|
173
|
-
<editor active="true" />
|
174
|
-
<layout>
|
175
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
176
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
177
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
178
|
-
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
179
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
180
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
181
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
182
|
-
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
183
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
184
|
-
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
185
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
186
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
187
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
188
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
189
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
190
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
191
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
192
|
-
</layout>
|
193
|
-
</component>
|
194
|
-
<component name="TypeScriptGeneratedFilesManager">
|
195
|
-
<option name="version" value="1" />
|
196
|
-
</component>
|
197
|
-
<component name="VcsContentAnnotationSettings">
|
198
|
-
<option name="myLimit" value="2678400000" />
|
199
|
-
</component>
|
200
|
-
<component name="XDebuggerManager">
|
201
|
-
<breakpoint-manager />
|
202
|
-
<watches-manager />
|
203
|
-
</component>
|
204
|
-
<component name="editorHistoryManager">
|
205
|
-
<entry file="file://$PROJECT_DIR$/CODE_OF_CONDUCT.md">
|
206
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
207
|
-
<state split_layout="SPLIT">
|
208
|
-
<first_editor relative-caret-position="0">
|
209
|
-
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
210
|
-
<folding />
|
211
|
-
</first_editor>
|
212
|
-
<second_editor />
|
213
|
-
</state>
|
214
|
-
</provider>
|
215
|
-
</entry>
|
216
|
-
<entry file="file://$PROJECT_DIR$/lib/sinesp_client_v2.rb">
|
217
|
-
<provider selected="true" editor-type-id="text-editor">
|
218
|
-
<state relative-caret-position="-1441">
|
219
|
-
<caret line="5" column="21" lean-forward="true" selection-start-line="5" selection-start-column="21" selection-end-line="5" selection-end-column="21" />
|
220
|
-
<folding />
|
221
|
-
</state>
|
222
|
-
</provider>
|
223
|
-
</entry>
|
224
|
-
<entry file="file://$PROJECT_DIR$/spec/sinesp_client_v2_spec.rb">
|
225
|
-
<provider selected="true" editor-type-id="text-editor">
|
226
|
-
<state relative-caret-position="315">
|
227
|
-
<caret line="15" column="3" lean-forward="true" selection-start-line="15" selection-start-column="3" selection-end-line="15" selection-end-column="3" />
|
228
|
-
<folding />
|
229
|
-
</state>
|
230
|
-
</provider>
|
231
|
-
</entry>
|
232
|
-
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
233
|
-
<provider selected="true" editor-type-id="text-editor">
|
234
|
-
<state relative-caret-position="231">
|
235
|
-
<caret line="11" column="22" lean-forward="true" selection-start-line="11" selection-start-column="22" selection-end-line="11" selection-end-column="22" />
|
236
|
-
<folding />
|
237
|
-
</state>
|
238
|
-
</provider>
|
239
|
-
</entry>
|
240
|
-
<entry file="file://$PROJECT_DIR$/.rspec">
|
241
|
-
<provider selected="true" editor-type-id="text-editor">
|
242
|
-
<state relative-caret-position="63">
|
243
|
-
<caret line="3" column="0" lean-forward="true" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
244
|
-
<folding />
|
245
|
-
</state>
|
246
|
-
</provider>
|
247
|
-
</entry>
|
248
|
-
<entry file="file://$PROJECT_DIR$/.rspec_status">
|
249
|
-
<provider selected="true" editor-type-id="text-editor">
|
250
|
-
<state relative-caret-position="0">
|
251
|
-
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
252
|
-
<folding />
|
253
|
-
</state>
|
254
|
-
</provider>
|
255
|
-
</entry>
|
256
|
-
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
257
|
-
<provider selected="true" editor-type-id="text-editor">
|
258
|
-
<state relative-caret-position="-409">
|
259
|
-
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
260
|
-
<folding />
|
261
|
-
</state>
|
262
|
-
</provider>
|
263
|
-
</entry>
|
264
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
265
|
-
<provider selected="true" editor-type-id="text-editor">
|
266
|
-
<state relative-caret-position="0">
|
267
|
-
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
268
|
-
<folding />
|
269
|
-
</state>
|
270
|
-
</provider>
|
271
|
-
</entry>
|
272
|
-
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
273
|
-
<provider selected="true" editor-type-id="text-editor">
|
274
|
-
<state relative-caret-position="105">
|
275
|
-
<caret line="5" column="0" lean-forward="true" selection-start-line="5" selection-start-column="0" selection-end-line="5" selection-end-column="0" />
|
276
|
-
<folding />
|
277
|
-
</state>
|
278
|
-
</provider>
|
279
|
-
</entry>
|
280
|
-
<entry file="file://$PROJECT_DIR$/Rakefile">
|
281
|
-
<provider selected="true" editor-type-id="text-editor">
|
282
|
-
<state relative-caret-position="0">
|
283
|
-
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
284
|
-
<folding />
|
285
|
-
</state>
|
286
|
-
</provider>
|
287
|
-
</entry>
|
288
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
289
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
290
|
-
<state split_layout="SPLIT">
|
291
|
-
<first_editor relative-caret-position="-21">
|
292
|
-
<caret line="20" column="6" lean-forward="false" selection-start-line="20" selection-start-column="6" selection-end-line="20" selection-end-column="34" />
|
293
|
-
<folding />
|
294
|
-
</first_editor>
|
295
|
-
<second_editor />
|
296
|
-
</state>
|
297
|
-
</provider>
|
298
|
-
</entry>
|
299
|
-
<entry file="file://$PROJECT_DIR$/sinesp_client_v2.gemspec">
|
300
|
-
<provider selected="true" editor-type-id="text-editor">
|
301
|
-
<state relative-caret-position="252">
|
302
|
-
<caret line="30" column="74" lean-forward="true" selection-start-line="30" selection-start-column="74" selection-end-line="30" selection-end-column="74" />
|
303
|
-
<folding />
|
304
|
-
</state>
|
305
|
-
</provider>
|
306
|
-
</entry>
|
307
|
-
<entry file="file://$PROJECT_DIR$/lib/sinesp_client_v2/version.rb">
|
308
|
-
<provider selected="true" editor-type-id="text-editor">
|
309
|
-
<state relative-caret-position="21">
|
310
|
-
<caret line="1" column="18" lean-forward="false" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
311
|
-
<folding />
|
312
|
-
</state>
|
313
|
-
</provider>
|
314
|
-
</entry>
|
315
|
-
</component>
|
316
|
-
</project>
|