youtube_embed 0.0.1.alpha → 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +0 -3
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/youtube_embed.iml +19 -0
- data/README.md +7 -7
- data/lib/youtube_embed/version.rb +1 -1
- data/lib/youtube_embed.rb +2 -21
- metadata +9 -5
- data/.idea/workspace.xml +0 -325
data/.gitignore
CHANGED
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -0,0 +1,9 @@
|
|
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/youtube_embed.iml" filepath="$PROJECT_DIR$/.idea/youtube_embed.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
data/.idea/vcs.xml
ADDED
@@ -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="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
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.2.1, RVM: ruby-1.9.3-p327) [gem]" level="application" />
|
17
|
+
</component>
|
18
|
+
</module>
|
19
|
+
|
data/README.md
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
# YoutubeEmbed
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
1. Simple Embed
|
6
|
-
|
7
|
-
2. Embed with title, description & thumbnail
|
3
|
+
TODO: Write a gem description
|
8
4
|
|
9
5
|
## Installation
|
10
6
|
|
@@ -22,8 +18,12 @@ Or install it yourself as:
|
|
22
18
|
|
23
19
|
## Usage
|
24
20
|
|
25
|
-
|
21
|
+
TODO: Write usage instructions here
|
26
22
|
|
27
23
|
## Contributing
|
28
24
|
|
29
|
-
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/lib/youtube_embed.rb
CHANGED
@@ -1,26 +1,7 @@
|
|
1
1
|
require "youtube_embed/version"
|
2
2
|
|
3
3
|
module YoutubeEmbed
|
4
|
-
|
5
|
-
|
6
|
-
VIDEO_FORMATS = [
|
7
|
-
%r(https?://www\.youtube\.com/embed/(.*?)(\?|$)),
|
8
|
-
%r(https?://youtu\.be/(.+)),
|
9
|
-
%r(https?://www\.youtube\.com/user/.*?#\w/\w/\w/\w/(.+)\b),
|
10
|
-
%r(https?://www\.youtube\.com/v/(.*?)(#|\?|$)),
|
11
|
-
%r(https?://www\.youtube\.com/watch\?v=(.*?)(&|#|$))
|
12
|
-
]
|
13
|
-
def get_video_id(url)
|
14
|
-
url.strip!
|
15
|
-
VIDEO_FORMATS.find { |video_format| url =~ video_format } and $1
|
16
|
-
end
|
17
|
-
|
18
|
-
def self.thumbnail_and_description
|
19
|
-
|
4
|
+
def self.embed
|
5
|
+
"Embed Youtube Videos"
|
20
6
|
end
|
21
|
-
|
22
|
-
def self.simple
|
23
|
-
|
24
|
-
end
|
25
|
-
|
26
7
|
end
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: youtube_embed
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Mohit Sharma
|
@@ -19,8 +19,12 @@ extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
21
|
- .gitignore
|
22
|
+
- .idea/encodings.xml
|
23
|
+
- .idea/misc.xml
|
24
|
+
- .idea/modules.xml
|
22
25
|
- .idea/scopes/scope_settings.xml
|
23
|
-
- .idea/
|
26
|
+
- .idea/vcs.xml
|
27
|
+
- .idea/youtube_embed.iml
|
24
28
|
- Gemfile
|
25
29
|
- LICENSE.txt
|
26
30
|
- README.md
|
@@ -43,9 +47,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
47
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
48
|
none: false
|
45
49
|
requirements:
|
46
|
-
- - ! '
|
50
|
+
- - ! '>='
|
47
51
|
- !ruby/object:Gem::Version
|
48
|
-
version:
|
52
|
+
version: '0'
|
49
53
|
requirements: []
|
50
54
|
rubyforge_project:
|
51
55
|
rubygems_version: 1.8.24
|
data/.idea/workspace.xml
DELETED
@@ -1,325 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="b7640352-25ab-4292-982e-3e09aa420ffa" name="Default" comment="">
|
5
|
-
<change type="DELETED" beforePath="$PROJECT_DIR$/.idea/scopes/scope_settings.xml" afterPath="" />
|
6
|
-
<change type="DELETED" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="" />
|
7
|
-
<change type="DELETED" beforePath="$PROJECT_DIR$/README.md.orig" afterPath="" />
|
8
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/README.md" afterPath="$PROJECT_DIR$/README.md" />
|
9
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/youtube_embed/version.rb" afterPath="$PROJECT_DIR$/lib/youtube_embed/version.rb" />
|
10
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/youtube_embed.rb" afterPath="$PROJECT_DIR$/lib/youtube_embed.rb" />
|
11
|
-
</list>
|
12
|
-
<ignored path="youtube_embed.iws" />
|
13
|
-
<ignored path=".idea/workspace.xml" />
|
14
|
-
<file path="/Dummy.txt" changelist="b7640352-25ab-4292-982e-3e09aa420ffa" time="1365069413989" ignored="false" />
|
15
|
-
<file path="/youtube_embed.gemspec" changelist="b7640352-25ab-4292-982e-3e09aa420ffa" time="1365070046387" ignored="false" />
|
16
|
-
<file path="/youtube_embed.rb" changelist="b7640352-25ab-4292-982e-3e09aa420ffa" time="1365079017188" ignored="false" />
|
17
|
-
<file path="/.gitignore" changelist="b7640352-25ab-4292-982e-3e09aa420ffa" time="1365070890113" ignored="false" />
|
18
|
-
<file path="/README.md" changelist="b7640352-25ab-4292-982e-3e09aa420ffa" time="1365079290739" ignored="false" />
|
19
|
-
<file path="/version.rb" changelist="b7640352-25ab-4292-982e-3e09aa420ffa" time="1365079782979" ignored="false" />
|
20
|
-
<option name="TRACKING_ENABLED" value="true" />
|
21
|
-
<option name="SHOW_DIALOG" value="false" />
|
22
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
23
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
24
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
25
|
-
</component>
|
26
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
27
|
-
<component name="CreatePatchCommitExecutor">
|
28
|
-
<option name="PATCH_PATH" value="" />
|
29
|
-
</component>
|
30
|
-
<component name="DaemonCodeAnalyzer">
|
31
|
-
<disable_hints />
|
32
|
-
</component>
|
33
|
-
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
34
|
-
<component name="FileEditorManager">
|
35
|
-
<leaf>
|
36
|
-
<file leaf-file-name="youtube_embed.gemspec" pinned="false" current="false" current-in-tab="false">
|
37
|
-
<entry file="file://$PROJECT_DIR$/youtube_embed.gemspec">
|
38
|
-
<provider selected="true" editor-type-id="text-editor">
|
39
|
-
<state line="11" column="25" selection-start="445" selection-end="445" vertical-scroll-proportion="0.0">
|
40
|
-
<folding />
|
41
|
-
</state>
|
42
|
-
</provider>
|
43
|
-
</entry>
|
44
|
-
</file>
|
45
|
-
<file leaf-file-name="README.md" pinned="false" current="false" current-in-tab="false">
|
46
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
47
|
-
<provider selected="true" editor-type-id="text-editor">
|
48
|
-
<state line="6" column="44" selection-start="120" selection-end="120" vertical-scroll-proportion="0.0">
|
49
|
-
<folding />
|
50
|
-
</state>
|
51
|
-
</provider>
|
52
|
-
</entry>
|
53
|
-
</file>
|
54
|
-
<file leaf-file-name=".gitignore" pinned="false" current="false" current-in-tab="false">
|
55
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
56
|
-
<provider selected="true" editor-type-id="text-editor">
|
57
|
-
<state line="18" column="6" selection-start="166" selection-end="166" vertical-scroll-proportion="0.0">
|
58
|
-
<folding />
|
59
|
-
</state>
|
60
|
-
</provider>
|
61
|
-
</entry>
|
62
|
-
</file>
|
63
|
-
<file leaf-file-name="youtube_embed.rb" pinned="false" current="false" current-in-tab="false">
|
64
|
-
<entry file="file://$PROJECT_DIR$/lib/youtube_embed.rb">
|
65
|
-
<provider selected="true" editor-type-id="text-editor">
|
66
|
-
<state line="22" column="8" selection-start="557" selection-end="557" vertical-scroll-proportion="0.0">
|
67
|
-
<folding />
|
68
|
-
</state>
|
69
|
-
</provider>
|
70
|
-
</entry>
|
71
|
-
</file>
|
72
|
-
<file leaf-file-name="version.rb" pinned="false" current="true" current-in-tab="true">
|
73
|
-
<entry file="file://$PROJECT_DIR$/lib/youtube_embed/version.rb">
|
74
|
-
<provider selected="true" editor-type-id="text-editor">
|
75
|
-
<state line="1" column="24" selection-start="44" selection-end="44" vertical-scroll-proportion="0.0198939">
|
76
|
-
<folding />
|
77
|
-
</state>
|
78
|
-
</provider>
|
79
|
-
</entry>
|
80
|
-
</file>
|
81
|
-
</leaf>
|
82
|
-
</component>
|
83
|
-
<component name="FindManager">
|
84
|
-
<FindUsagesManager>
|
85
|
-
<setting name="OPEN_NEW_TAB" value="false" />
|
86
|
-
</FindUsagesManager>
|
87
|
-
</component>
|
88
|
-
<component name="Git.Settings">
|
89
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
90
|
-
</component>
|
91
|
-
<component name="GitLogSettings">
|
92
|
-
<option name="myDateState">
|
93
|
-
<MyDateState />
|
94
|
-
</option>
|
95
|
-
</component>
|
96
|
-
<component name="IdeDocumentHistory">
|
97
|
-
<option name="changedFiles">
|
98
|
-
<list>
|
99
|
-
<option value="$PROJECT_DIR$/youtube_embed.gemspec" />
|
100
|
-
<option value="$PROJECT_DIR$/.gitignore" />
|
101
|
-
<option value="$PROJECT_DIR$/lib/youtube_embed.rb" />
|
102
|
-
<option value="$PROJECT_DIR$/README.md" />
|
103
|
-
<option value="$PROJECT_DIR$/lib/youtube_embed/version.rb" />
|
104
|
-
</list>
|
105
|
-
</option>
|
106
|
-
</component>
|
107
|
-
<component name="ProjectFrameBounds">
|
108
|
-
<option name="x" value="128" />
|
109
|
-
<option name="y" value="94" />
|
110
|
-
<option name="width" value="1853" />
|
111
|
-
<option name="height" value="877" />
|
112
|
-
</component>
|
113
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
114
|
-
<OptionsSetting value="true" id="Add" />
|
115
|
-
<OptionsSetting value="true" id="Remove" />
|
116
|
-
<OptionsSetting value="true" id="Checkout" />
|
117
|
-
<OptionsSetting value="true" id="Update" />
|
118
|
-
<OptionsSetting value="true" id="Status" />
|
119
|
-
<OptionsSetting value="true" id="Edit" />
|
120
|
-
<ConfirmationsSetting value="0" id="Add" />
|
121
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
122
|
-
</component>
|
123
|
-
<component name="ProjectReloadState">
|
124
|
-
<option name="STATE" value="0" />
|
125
|
-
</component>
|
126
|
-
<component name="ProjectView">
|
127
|
-
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
128
|
-
<flattenPackages />
|
129
|
-
<showMembers />
|
130
|
-
<showModules />
|
131
|
-
<showLibraryContents />
|
132
|
-
<hideEmptyPackages />
|
133
|
-
<abbreviatePackageNames />
|
134
|
-
<autoscrollToSource />
|
135
|
-
<autoscrollFromSource />
|
136
|
-
<sortByType />
|
137
|
-
</navigator>
|
138
|
-
<panes>
|
139
|
-
<pane id="Scope" />
|
140
|
-
<pane id="ProjectPane">
|
141
|
-
<subPane>
|
142
|
-
<PATH>
|
143
|
-
<PATH_ELEMENT>
|
144
|
-
<option name="myItemId" value="youtube_embed" />
|
145
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
146
|
-
</PATH_ELEMENT>
|
147
|
-
</PATH>
|
148
|
-
<PATH>
|
149
|
-
<PATH_ELEMENT>
|
150
|
-
<option name="myItemId" value="youtube_embed" />
|
151
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
152
|
-
</PATH_ELEMENT>
|
153
|
-
<PATH_ELEMENT>
|
154
|
-
<option name="myItemId" value="youtube_embed" />
|
155
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
156
|
-
</PATH_ELEMENT>
|
157
|
-
</PATH>
|
158
|
-
<PATH>
|
159
|
-
<PATH_ELEMENT>
|
160
|
-
<option name="myItemId" value="youtube_embed" />
|
161
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
162
|
-
</PATH_ELEMENT>
|
163
|
-
<PATH_ELEMENT>
|
164
|
-
<option name="myItemId" value="youtube_embed" />
|
165
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
166
|
-
</PATH_ELEMENT>
|
167
|
-
<PATH_ELEMENT>
|
168
|
-
<option name="myItemId" value="lib" />
|
169
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
170
|
-
</PATH_ELEMENT>
|
171
|
-
</PATH>
|
172
|
-
<PATH>
|
173
|
-
<PATH_ELEMENT>
|
174
|
-
<option name="myItemId" value="youtube_embed" />
|
175
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
176
|
-
</PATH_ELEMENT>
|
177
|
-
<PATH_ELEMENT>
|
178
|
-
<option name="myItemId" value="youtube_embed" />
|
179
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
180
|
-
</PATH_ELEMENT>
|
181
|
-
<PATH_ELEMENT>
|
182
|
-
<option name="myItemId" value="lib" />
|
183
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
184
|
-
</PATH_ELEMENT>
|
185
|
-
<PATH_ELEMENT>
|
186
|
-
<option name="myItemId" value="youtube_embed" />
|
187
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
188
|
-
</PATH_ELEMENT>
|
189
|
-
</PATH>
|
190
|
-
</subPane>
|
191
|
-
</pane>
|
192
|
-
</panes>
|
193
|
-
</component>
|
194
|
-
<component name="PropertiesComponent">
|
195
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
196
|
-
</component>
|
197
|
-
<component name="RunManager">
|
198
|
-
<list size="0" />
|
199
|
-
</component>
|
200
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
201
|
-
<component name="TaskManager">
|
202
|
-
<task active="true" id="Default" summary="Default task">
|
203
|
-
<changelist id="b7640352-25ab-4292-982e-3e09aa420ffa" name="Default" comment="" />
|
204
|
-
<created>1365069412819</created>
|
205
|
-
<updated>1365069412819</updated>
|
206
|
-
</task>
|
207
|
-
<servers />
|
208
|
-
</component>
|
209
|
-
<component name="ToolWindowManager">
|
210
|
-
<frame x="128" y="94" width="1853" height="877" extended-state="0" />
|
211
|
-
<editor active="true" />
|
212
|
-
<layout>
|
213
|
-
<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" />
|
214
|
-
<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" />
|
215
|
-
<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" />
|
216
|
-
<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" />
|
217
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24958494" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
218
|
-
<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" />
|
219
|
-
<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="false" content_ui="tabs" />
|
220
|
-
<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="false" content_ui="tabs" />
|
221
|
-
<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" />
|
222
|
-
<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" />
|
223
|
-
<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" />
|
224
|
-
<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" />
|
225
|
-
<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" />
|
226
|
-
<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" />
|
227
|
-
<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" />
|
228
|
-
<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" />
|
229
|
-
<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" />
|
230
|
-
</layout>
|
231
|
-
</component>
|
232
|
-
<component name="VcsContentAnnotationSettings">
|
233
|
-
<option name="myLimit" value="2678400000" />
|
234
|
-
</component>
|
235
|
-
<component name="VcsManagerConfiguration">
|
236
|
-
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
237
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
238
|
-
<option name="CHECK_NEW_TODO" value="true" />
|
239
|
-
<option name="myTodoPanelSettings">
|
240
|
-
<value>
|
241
|
-
<are-packages-shown value="false" />
|
242
|
-
<are-modules-shown value="false" />
|
243
|
-
<flatten-packages value="false" />
|
244
|
-
<is-autoscroll-to-source value="false" />
|
245
|
-
</value>
|
246
|
-
</option>
|
247
|
-
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
248
|
-
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
249
|
-
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
250
|
-
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
251
|
-
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
252
|
-
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
253
|
-
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
254
|
-
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
255
|
-
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
256
|
-
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
257
|
-
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
258
|
-
<option name="SHORT_DIFF_HORISONTALLY" value="true" />
|
259
|
-
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
260
|
-
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
261
|
-
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
262
|
-
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
263
|
-
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
264
|
-
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
265
|
-
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
|
266
|
-
<option name="LIMIT_HISTORY" value="true" />
|
267
|
-
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
|
268
|
-
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
269
|
-
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
270
|
-
<option name="LAST_COMMIT_MESSAGE" />
|
271
|
-
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
272
|
-
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
273
|
-
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
274
|
-
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
275
|
-
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
276
|
-
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
277
|
-
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
278
|
-
<option name="ACTIVE_VCS_NAME" />
|
279
|
-
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
280
|
-
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
281
|
-
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
282
|
-
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
283
|
-
</component>
|
284
|
-
<component name="XDebuggerManager">
|
285
|
-
<breakpoint-manager />
|
286
|
-
</component>
|
287
|
-
<component name="editorHistoryManager">
|
288
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
289
|
-
<provider selected="true" editor-type-id="text-editor">
|
290
|
-
<state line="18" column="6" selection-start="166" selection-end="166" vertical-scroll-proportion="0.0">
|
291
|
-
<folding />
|
292
|
-
</state>
|
293
|
-
</provider>
|
294
|
-
</entry>
|
295
|
-
<entry file="file://$PROJECT_DIR$/youtube_embed.gemspec">
|
296
|
-
<provider selected="true" editor-type-id="text-editor">
|
297
|
-
<state line="11" column="25" selection-start="445" selection-end="445" vertical-scroll-proportion="0.0">
|
298
|
-
<folding />
|
299
|
-
</state>
|
300
|
-
</provider>
|
301
|
-
</entry>
|
302
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
303
|
-
<provider selected="true" editor-type-id="text-editor">
|
304
|
-
<state line="6" column="44" selection-start="120" selection-end="120" vertical-scroll-proportion="0.0">
|
305
|
-
<folding />
|
306
|
-
</state>
|
307
|
-
</provider>
|
308
|
-
</entry>
|
309
|
-
<entry file="file://$PROJECT_DIR$/lib/youtube_embed.rb">
|
310
|
-
<provider selected="true" editor-type-id="text-editor">
|
311
|
-
<state line="22" column="8" selection-start="557" selection-end="557" vertical-scroll-proportion="0.0">
|
312
|
-
<folding />
|
313
|
-
</state>
|
314
|
-
</provider>
|
315
|
-
</entry>
|
316
|
-
<entry file="file://$PROJECT_DIR$/lib/youtube_embed/version.rb">
|
317
|
-
<provider selected="true" editor-type-id="text-editor">
|
318
|
-
<state line="1" column="24" selection-start="44" selection-end="44" vertical-scroll-proportion="0.0198939">
|
319
|
-
<folding />
|
320
|
-
</state>
|
321
|
-
</provider>
|
322
|
-
</entry>
|
323
|
-
</component>
|
324
|
-
</project>
|
325
|
-
|