ruboty-rin_chan 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 +9 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/encodings.xml +4 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/ruboty-rin_chan.iml +17 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +309 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/README.md +39 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/ruboty/handlers/rin_chan.rb +13 -0
- data/lib/ruboty/rin_chan.rb +8 -0
- data/lib/ruboty/rin_chan/actions/rin_chan.rb +12 -0
- data/lib/ruboty/rin_chan/version.rb +5 -0
- data/ruboty-rin_chan.gemspec +24 -0
- metadata +109 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: fbf2c0aad2bc7e13de51893f270d79bdb393914e
|
|
4
|
+
data.tar.gz: 5af597c3c24bbf39de46d42098c10eb8bbd19cd3
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e9716db4e1ea85e67741c9f97a0761312c76578ea12ed3b60071daedf30efe4374d9d670b2d4ebd15072cba4e1f206f4a5661538fcb5942217ae6c14c4de143b
|
|
7
|
+
data.tar.gz: 92620ecfb9f3484ba9573a988b2d86bc09a4761aa5c2d299ebda1c972a83fcc79fb20b0e7b0a4c09dd9ce7886a5c137c678e26d166db26310c989cf38e6d4924
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruboty-rin_chan
|
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>
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
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/ruboty-rin_chan.iml" filepath="$PROJECT_DIR$/.idea/ruboty-rin_chan.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
@@ -0,0 +1,17 @@
|
|
|
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="$MODULE_DIR$/lib" />
|
|
9
|
+
</configuration>
|
|
10
|
+
</facet>
|
|
11
|
+
</component>
|
|
12
|
+
<component name="NewModuleRootManager">
|
|
13
|
+
<content url="file://$MODULE_DIR$" />
|
|
14
|
+
<orderEntry type="inheritedJdk" />
|
|
15
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
16
|
+
</component>
|
|
17
|
+
</module>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="1ea74e8a-b6fb-4b14-a75a-8d4d5e1f7563" name="Default" comment="" />
|
|
5
|
+
<ignored path="ruboty-rin_chan.iws" />
|
|
6
|
+
<ignored path=".idea/workspace.xml" />
|
|
7
|
+
<ignored path=".idea/dataSources.local.xml" />
|
|
8
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
9
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
10
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
11
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
12
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
13
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
14
|
+
</component>
|
|
15
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
16
|
+
<component name="CreatePatchCommitExecutor">
|
|
17
|
+
<option name="PATCH_PATH" value="" />
|
|
18
|
+
</component>
|
|
19
|
+
<component name="DaemonCodeAnalyzer">
|
|
20
|
+
<disable_hints />
|
|
21
|
+
</component>
|
|
22
|
+
<component name="FavoritesManager">
|
|
23
|
+
<favorites_list name="ruboty-rin_chan" />
|
|
24
|
+
</component>
|
|
25
|
+
<component name="FileEditorManager">
|
|
26
|
+
<leaf>
|
|
27
|
+
<file leaf-file-name="rin_chan.rb" pinned="false" current-in-tab="true">
|
|
28
|
+
<entry file="file://$PROJECT_DIR$/lib/ruboty/rin_chan/actions/rin_chan.rb">
|
|
29
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
30
|
+
<state vertical-scroll-proportion="0.11299435" vertical-offset="0" max-vertical-offset="531">
|
|
31
|
+
<caret line="4" column="0" selection-start-line="4" selection-start-column="0" selection-end-line="4" selection-end-column="0" />
|
|
32
|
+
<folding />
|
|
33
|
+
</state>
|
|
34
|
+
</provider>
|
|
35
|
+
</entry>
|
|
36
|
+
</file>
|
|
37
|
+
<file leaf-file-name="rin_chan.rb" pinned="false" current-in-tab="false">
|
|
38
|
+
<entry file="file://$PROJECT_DIR$/lib/ruboty/handlers/rin_chan.rb">
|
|
39
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
40
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="285">
|
|
41
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
42
|
+
<folding />
|
|
43
|
+
</state>
|
|
44
|
+
</provider>
|
|
45
|
+
</entry>
|
|
46
|
+
</file>
|
|
47
|
+
</leaf>
|
|
48
|
+
</component>
|
|
49
|
+
<component name="Git.Settings">
|
|
50
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
51
|
+
</component>
|
|
52
|
+
<component name="IdeDocumentHistory">
|
|
53
|
+
<option name="CHANGED_PATHS">
|
|
54
|
+
<list>
|
|
55
|
+
<option value="$PROJECT_DIR$/lib/ruboty/rin_chan/actions/rin_chan.rb" />
|
|
56
|
+
</list>
|
|
57
|
+
</option>
|
|
58
|
+
</component>
|
|
59
|
+
<component name="JsGulpfileManager">
|
|
60
|
+
<detection-done>true</detection-done>
|
|
61
|
+
</component>
|
|
62
|
+
<component name="ProjectFrameBounds">
|
|
63
|
+
<option name="x" value="722" />
|
|
64
|
+
<option name="y" value="23" />
|
|
65
|
+
<option name="width" value="718" />
|
|
66
|
+
<option name="height" value="877" />
|
|
67
|
+
</component>
|
|
68
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
69
|
+
<OptionsSetting value="true" id="Add" />
|
|
70
|
+
<OptionsSetting value="true" id="Remove" />
|
|
71
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
72
|
+
<OptionsSetting value="true" id="Update" />
|
|
73
|
+
<OptionsSetting value="true" id="Status" />
|
|
74
|
+
<OptionsSetting value="true" id="Edit" />
|
|
75
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
76
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
77
|
+
</component>
|
|
78
|
+
<component name="ProjectView">
|
|
79
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
80
|
+
<flattenPackages />
|
|
81
|
+
<showMembers />
|
|
82
|
+
<showModules />
|
|
83
|
+
<showLibraryContents />
|
|
84
|
+
<hideEmptyPackages />
|
|
85
|
+
<abbreviatePackageNames />
|
|
86
|
+
<autoscrollToSource />
|
|
87
|
+
<autoscrollFromSource />
|
|
88
|
+
<sortByType />
|
|
89
|
+
</navigator>
|
|
90
|
+
<panes>
|
|
91
|
+
<pane id="ProjectPane">
|
|
92
|
+
<subPane>
|
|
93
|
+
<PATH>
|
|
94
|
+
<PATH_ELEMENT>
|
|
95
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
96
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
97
|
+
</PATH_ELEMENT>
|
|
98
|
+
</PATH>
|
|
99
|
+
<PATH>
|
|
100
|
+
<PATH_ELEMENT>
|
|
101
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
102
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
103
|
+
</PATH_ELEMENT>
|
|
104
|
+
<PATH_ELEMENT>
|
|
105
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
106
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
107
|
+
</PATH_ELEMENT>
|
|
108
|
+
</PATH>
|
|
109
|
+
<PATH>
|
|
110
|
+
<PATH_ELEMENT>
|
|
111
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
112
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
113
|
+
</PATH_ELEMENT>
|
|
114
|
+
<PATH_ELEMENT>
|
|
115
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
116
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
117
|
+
</PATH_ELEMENT>
|
|
118
|
+
<PATH_ELEMENT>
|
|
119
|
+
<option name="myItemId" value="lib" />
|
|
120
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
121
|
+
</PATH_ELEMENT>
|
|
122
|
+
<PATH_ELEMENT>
|
|
123
|
+
<option name="myItemId" value="ruboty" />
|
|
124
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
125
|
+
</PATH_ELEMENT>
|
|
126
|
+
</PATH>
|
|
127
|
+
<PATH>
|
|
128
|
+
<PATH_ELEMENT>
|
|
129
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
130
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
131
|
+
</PATH_ELEMENT>
|
|
132
|
+
<PATH_ELEMENT>
|
|
133
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
134
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
135
|
+
</PATH_ELEMENT>
|
|
136
|
+
<PATH_ELEMENT>
|
|
137
|
+
<option name="myItemId" value="lib" />
|
|
138
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
139
|
+
</PATH_ELEMENT>
|
|
140
|
+
<PATH_ELEMENT>
|
|
141
|
+
<option name="myItemId" value="ruboty" />
|
|
142
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
143
|
+
</PATH_ELEMENT>
|
|
144
|
+
<PATH_ELEMENT>
|
|
145
|
+
<option name="myItemId" value="rin_chan" />
|
|
146
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
147
|
+
</PATH_ELEMENT>
|
|
148
|
+
</PATH>
|
|
149
|
+
<PATH>
|
|
150
|
+
<PATH_ELEMENT>
|
|
151
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
152
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
153
|
+
</PATH_ELEMENT>
|
|
154
|
+
<PATH_ELEMENT>
|
|
155
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
156
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
157
|
+
</PATH_ELEMENT>
|
|
158
|
+
<PATH_ELEMENT>
|
|
159
|
+
<option name="myItemId" value="lib" />
|
|
160
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
161
|
+
</PATH_ELEMENT>
|
|
162
|
+
<PATH_ELEMENT>
|
|
163
|
+
<option name="myItemId" value="ruboty" />
|
|
164
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
165
|
+
</PATH_ELEMENT>
|
|
166
|
+
<PATH_ELEMENT>
|
|
167
|
+
<option name="myItemId" value="rin_chan" />
|
|
168
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
169
|
+
</PATH_ELEMENT>
|
|
170
|
+
<PATH_ELEMENT>
|
|
171
|
+
<option name="myItemId" value="actions" />
|
|
172
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
173
|
+
</PATH_ELEMENT>
|
|
174
|
+
</PATH>
|
|
175
|
+
<PATH>
|
|
176
|
+
<PATH_ELEMENT>
|
|
177
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
178
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
179
|
+
</PATH_ELEMENT>
|
|
180
|
+
<PATH_ELEMENT>
|
|
181
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
182
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
183
|
+
</PATH_ELEMENT>
|
|
184
|
+
<PATH_ELEMENT>
|
|
185
|
+
<option name="myItemId" value="lib" />
|
|
186
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
187
|
+
</PATH_ELEMENT>
|
|
188
|
+
<PATH_ELEMENT>
|
|
189
|
+
<option name="myItemId" value="ruboty" />
|
|
190
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
191
|
+
</PATH_ELEMENT>
|
|
192
|
+
<PATH_ELEMENT>
|
|
193
|
+
<option name="myItemId" value="handlers" />
|
|
194
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
195
|
+
</PATH_ELEMENT>
|
|
196
|
+
</PATH>
|
|
197
|
+
<PATH>
|
|
198
|
+
<PATH_ELEMENT>
|
|
199
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
200
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
201
|
+
</PATH_ELEMENT>
|
|
202
|
+
<PATH_ELEMENT>
|
|
203
|
+
<option name="myItemId" value="ruboty-rin_chan" />
|
|
204
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
205
|
+
</PATH_ELEMENT>
|
|
206
|
+
<PATH_ELEMENT>
|
|
207
|
+
<option name="myItemId" value="bin" />
|
|
208
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
209
|
+
</PATH_ELEMENT>
|
|
210
|
+
</PATH>
|
|
211
|
+
</subPane>
|
|
212
|
+
</pane>
|
|
213
|
+
<pane id="Scope" />
|
|
214
|
+
</panes>
|
|
215
|
+
</component>
|
|
216
|
+
<component name="PropertiesComponent">
|
|
217
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
|
218
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
219
|
+
<property name="FullScreen" value="false" />
|
|
220
|
+
</component>
|
|
221
|
+
<component name="RunManager">
|
|
222
|
+
<list size="0" />
|
|
223
|
+
</component>
|
|
224
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
|
225
|
+
<component name="SvnConfiguration">
|
|
226
|
+
<configuration />
|
|
227
|
+
</component>
|
|
228
|
+
<component name="TaskManager">
|
|
229
|
+
<task active="true" id="Default" summary="Default task">
|
|
230
|
+
<changelist id="1ea74e8a-b6fb-4b14-a75a-8d4d5e1f7563" name="Default" comment="" />
|
|
231
|
+
<created>1426910684095</created>
|
|
232
|
+
<option name="number" value="Default" />
|
|
233
|
+
<updated>1426910684095</updated>
|
|
234
|
+
</task>
|
|
235
|
+
<servers />
|
|
236
|
+
</component>
|
|
237
|
+
<component name="ToolWindowManager">
|
|
238
|
+
<frame x="722" y="23" width="718" height="877" extended-state="0" />
|
|
239
|
+
<editor active="false" />
|
|
240
|
+
<layout>
|
|
241
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3297362" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
242
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
243
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
244
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
|
245
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
246
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
247
|
+
<window_info id="Application Servers" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
248
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24930362" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
249
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
|
250
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
|
251
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
252
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
|
253
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
254
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
255
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
256
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
257
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
258
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
|
259
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
|
260
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
261
|
+
</layout>
|
|
262
|
+
</component>
|
|
263
|
+
<component name="Vcs.Log.UiProperties">
|
|
264
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
|
265
|
+
<collection />
|
|
266
|
+
</option>
|
|
267
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
|
268
|
+
<collection />
|
|
269
|
+
</option>
|
|
270
|
+
</component>
|
|
271
|
+
<component name="VcsContentAnnotationSettings">
|
|
272
|
+
<option name="myLimit" value="2678400000" />
|
|
273
|
+
</component>
|
|
274
|
+
<component name="VcsManagerConfiguration">
|
|
275
|
+
<option name="myTodoPanelSettings">
|
|
276
|
+
<TodoPanelSettings />
|
|
277
|
+
</option>
|
|
278
|
+
</component>
|
|
279
|
+
<component name="XDebuggerManager">
|
|
280
|
+
<breakpoint-manager />
|
|
281
|
+
<watches-manager />
|
|
282
|
+
</component>
|
|
283
|
+
<component name="editorHistoryManager">
|
|
284
|
+
<entry file="file://$PROJECT_DIR$/lib/ruboty/handlers/rin_chan.rb">
|
|
285
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
286
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="531">
|
|
287
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
288
|
+
<folding />
|
|
289
|
+
</state>
|
|
290
|
+
</provider>
|
|
291
|
+
</entry>
|
|
292
|
+
<entry file="file://$PROJECT_DIR$/lib/ruboty/rin_chan.rb">
|
|
293
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
294
|
+
<state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="531">
|
|
295
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
296
|
+
<folding />
|
|
297
|
+
</state>
|
|
298
|
+
</provider>
|
|
299
|
+
</entry>
|
|
300
|
+
<entry file="file://$PROJECT_DIR$/lib/ruboty/rin_chan/actions/rin_chan.rb">
|
|
301
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
302
|
+
<state vertical-scroll-proportion="0.11299435" vertical-offset="0" max-vertical-offset="531">
|
|
303
|
+
<caret line="4" column="0" selection-start-line="4" selection-start-column="0" selection-end-line="4" selection-end-column="0" />
|
|
304
|
+
<folding />
|
|
305
|
+
</state>
|
|
306
|
+
</provider>
|
|
307
|
+
</entry>
|
|
308
|
+
</component>
|
|
309
|
+
</project>
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Ruboty::RinChan
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ruboty/rin_chan`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'ruboty-rin_chan'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install ruboty-rin_chan
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
+
|
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
1. Fork it ( https://github.com/[my-github-username]/ruboty-rin_chan/fork )
|
|
36
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
37
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
38
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
39
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "ruboty/rin_chan"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
require "ruboty/rin_chan/actions/rin_chan"
|
|
2
|
+
|
|
3
|
+
module Ruboty
|
|
4
|
+
module Handlers
|
|
5
|
+
class RinChan < Base
|
|
6
|
+
on /rin chan rin_chan/, name: 'rin_chan', description: 'TODO: write your description'
|
|
7
|
+
|
|
8
|
+
def rin_chan(message)
|
|
9
|
+
Ruboty::RinChan::Actions::RinChan.new(message).call
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'ruboty/rin_chan/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "ruboty-rin_chan"
|
|
8
|
+
spec.version = Ruboty::RinChan::VERSION
|
|
9
|
+
spec.authors = ["jajkeqos"]
|
|
10
|
+
spec.email = ["jajkeqos+github@gmail.com"]
|
|
11
|
+
spec.summary = "talk with rin-chan on ruboty"
|
|
12
|
+
spec.description = "we can talk with rin-chan on ruboty"
|
|
13
|
+
spec.homepage = ""
|
|
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_runtime_dependency "ruboty"
|
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.8"
|
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
24
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruboty-rin_chan
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- jajkeqos
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-03-21 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: ruboty
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: bundler
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.8'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.8'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rake
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '10.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '10.0'
|
|
55
|
+
description: we can talk with rin-chan on ruboty
|
|
56
|
+
email:
|
|
57
|
+
- jajkeqos+github@gmail.com
|
|
58
|
+
executables:
|
|
59
|
+
- console
|
|
60
|
+
- setup
|
|
61
|
+
extensions: []
|
|
62
|
+
extra_rdoc_files: []
|
|
63
|
+
files:
|
|
64
|
+
- ".gitignore"
|
|
65
|
+
- ".idea/.name"
|
|
66
|
+
- ".idea/.rakeTasks"
|
|
67
|
+
- ".idea/encodings.xml"
|
|
68
|
+
- ".idea/misc.xml"
|
|
69
|
+
- ".idea/modules.xml"
|
|
70
|
+
- ".idea/ruboty-rin_chan.iml"
|
|
71
|
+
- ".idea/scopes/scope_settings.xml"
|
|
72
|
+
- ".idea/vcs.xml"
|
|
73
|
+
- ".idea/workspace.xml"
|
|
74
|
+
- ".travis.yml"
|
|
75
|
+
- Gemfile
|
|
76
|
+
- README.md
|
|
77
|
+
- Rakefile
|
|
78
|
+
- bin/console
|
|
79
|
+
- bin/setup
|
|
80
|
+
- lib/ruboty/handlers/rin_chan.rb
|
|
81
|
+
- lib/ruboty/rin_chan.rb
|
|
82
|
+
- lib/ruboty/rin_chan/actions/rin_chan.rb
|
|
83
|
+
- lib/ruboty/rin_chan/version.rb
|
|
84
|
+
- ruboty-rin_chan.gemspec
|
|
85
|
+
homepage: ''
|
|
86
|
+
licenses:
|
|
87
|
+
- MIT
|
|
88
|
+
metadata: {}
|
|
89
|
+
post_install_message:
|
|
90
|
+
rdoc_options: []
|
|
91
|
+
require_paths:
|
|
92
|
+
- lib
|
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ">="
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '0'
|
|
98
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
requirements: []
|
|
104
|
+
rubyforge_project:
|
|
105
|
+
rubygems_version: 2.4.5
|
|
106
|
+
signing_key:
|
|
107
|
+
specification_version: 4
|
|
108
|
+
summary: talk with rin-chan on ruboty
|
|
109
|
+
test_files: []
|