tiny-cms 1.0.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.
- data/.gitignore +18 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/cssxfire.xml +9 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/tiny_cms.iml +17 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +500 -0
- data/.rvmrc +4 -0
- data/CHANGES +5 -0
- data/Gemfile +9 -0
- data/README.md +4 -0
- data/Rakefile +29 -0
- data/lib/tiny_cms.rb +1 -0
- data/lib/tiny_cms/tiny_cms.rb +7 -0
- data/lib/tiny_cms/version.rb +3 -0
- data/tiny-cms.gemspec +18 -0
- metadata +64 -0
data/.gitignore
ADDED
data/.idea/.name
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tiny_cms
|
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/cssxfire.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="CssXFireSettings">
|
|
4
|
+
<general autoClear="false" autoExpand="false" />
|
|
5
|
+
<strategy useRoutes="false" mediaReduce="false" fileReduce="false" currentDocumentsReduce="false" resolveVariables="true" resolveMixins="true" />
|
|
6
|
+
<routes />
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
9
|
+
|
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/tiny_cms.iml" filepath="$PROJECT_DIR$/.idea/tiny_cms.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
9
|
+
|
data/.idea/tiny_cms.iml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
|
5
|
+
<orderEntry type="inheritedJdk" />
|
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.1.3, RVM: ruby-1.9.3-p194 [file_utils]) [gem]" level="application" />
|
|
8
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.1.3, RVM: ruby-1.9.3-p194 [file_utils]) [gem]" level="application" />
|
|
9
|
+
<orderEntry type="library" scope="PROVIDED" name="metaclass (v0.0.1, RVM: ruby-1.9.3-p194 [file_utils]) [gem]" level="application" />
|
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="mocha (v0.10.3, RVM: ruby-1.9.3-p194 [file_utils]) [gem]" level="application" />
|
|
11
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v2.9.0, RVM: ruby-1.9.3-p194 [file_utils]) [gem]" level="application" />
|
|
12
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v2.9.0, RVM: ruby-1.9.3-p194 [file_utils]) [gem]" level="application" />
|
|
13
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v2.9.1, RVM: ruby-1.9.3-p194 [file_utils]) [gem]" level="application" />
|
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v2.9.0, RVM: ruby-1.9.3-p194 [file_utils]) [gem]" level="application" />
|
|
15
|
+
</component>
|
|
16
|
+
</module>
|
|
17
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,500 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="028c3cfa-3783-49bb-9928-c8aa0635b107" name="Default" comment="">
|
|
5
|
+
<change type="MOVED" beforePath="$PROJECT_DIR$/tiny_cms.gemspec" afterPath="$PROJECT_DIR$/tiny-cms.gemspec" />
|
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Rakefile" afterPath="$PROJECT_DIR$/Rakefile" />
|
|
7
|
+
</list>
|
|
8
|
+
<ignored path="tiny_cms.iws" />
|
|
9
|
+
<ignored path=".idea/workspace.xml" />
|
|
10
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
11
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
12
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
13
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
14
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
15
|
+
</component>
|
|
16
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
17
|
+
<component name="CreatePatchCommitExecutor">
|
|
18
|
+
<option name="PATCH_PATH" value="" />
|
|
19
|
+
</component>
|
|
20
|
+
<component name="DaemonCodeAnalyzer">
|
|
21
|
+
<disable_hints />
|
|
22
|
+
</component>
|
|
23
|
+
<component name="FavoritesManager">
|
|
24
|
+
<favorites_list name="tiny_cms" />
|
|
25
|
+
</component>
|
|
26
|
+
<component name="FileEditorManager">
|
|
27
|
+
<leaf>
|
|
28
|
+
<file leaf-file-name="tiny_cms.rb" pinned="false" current="false" current-in-tab="false">
|
|
29
|
+
<entry file="file://$PROJECT_DIR$/lib/tiny_cms/tiny_cms.rb">
|
|
30
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
31
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
32
|
+
<folding />
|
|
33
|
+
</state>
|
|
34
|
+
</provider>
|
|
35
|
+
</entry>
|
|
36
|
+
</file>
|
|
37
|
+
<file leaf-file-name="version.rb" pinned="false" current="false" current-in-tab="false">
|
|
38
|
+
<entry file="file://$PROJECT_DIR$/lib/tiny_cms/version.rb">
|
|
39
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
40
|
+
<state line="0" column="14" selection-start="14" selection-end="14" vertical-scroll-proportion="0.0">
|
|
41
|
+
<folding />
|
|
42
|
+
</state>
|
|
43
|
+
</provider>
|
|
44
|
+
</entry>
|
|
45
|
+
</file>
|
|
46
|
+
<file leaf-file-name=".gitignore" pinned="false" current="false" current-in-tab="false">
|
|
47
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
|
48
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
49
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
50
|
+
<folding />
|
|
51
|
+
</state>
|
|
52
|
+
</provider>
|
|
53
|
+
</entry>
|
|
54
|
+
</file>
|
|
55
|
+
<file leaf-file-name="tiny_cms.rb" pinned="false" current="false" current-in-tab="false">
|
|
56
|
+
<entry file="file://$PROJECT_DIR$/lib/tiny_cms.rb">
|
|
57
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
58
|
+
<state line="1" column="0" selection-start="19" selection-end="19" vertical-scroll-proportion="0.0">
|
|
59
|
+
<folding />
|
|
60
|
+
</state>
|
|
61
|
+
</provider>
|
|
62
|
+
</entry>
|
|
63
|
+
</file>
|
|
64
|
+
<file leaf-file-name="CHANGES" pinned="false" current="false" current-in-tab="false">
|
|
65
|
+
<entry file="file://$PROJECT_DIR$/CHANGES">
|
|
66
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
67
|
+
<state line="4" column="15" selection-start="55" selection-end="55" vertical-scroll-proportion="0.0">
|
|
68
|
+
<folding />
|
|
69
|
+
</state>
|
|
70
|
+
</provider>
|
|
71
|
+
</entry>
|
|
72
|
+
</file>
|
|
73
|
+
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
|
74
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
75
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
76
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
77
|
+
<folding />
|
|
78
|
+
</state>
|
|
79
|
+
</provider>
|
|
80
|
+
</entry>
|
|
81
|
+
</file>
|
|
82
|
+
<file leaf-file-name="Rakefile" pinned="false" current="true" current-in-tab="true">
|
|
83
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
84
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
85
|
+
<state line="12" column="24" selection-start="205" selection-end="227" vertical-scroll-proportion="0.21052632">
|
|
86
|
+
<folding />
|
|
87
|
+
</state>
|
|
88
|
+
</provider>
|
|
89
|
+
</entry>
|
|
90
|
+
</file>
|
|
91
|
+
<file leaf-file-name="tiny-cms.gemspec" pinned="false" current="false" current-in-tab="false">
|
|
92
|
+
<entry file="file://$PROJECT_DIR$/tiny-cms.gemspec">
|
|
93
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
94
|
+
<state line="10" column="54" selection-start="428" selection-end="428" vertical-scroll-proportion="0.0">
|
|
95
|
+
<folding />
|
|
96
|
+
</state>
|
|
97
|
+
</provider>
|
|
98
|
+
</entry>
|
|
99
|
+
</file>
|
|
100
|
+
<file leaf-file-name="README.md" pinned="false" current="false" current-in-tab="false">
|
|
101
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
102
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
103
|
+
<state line="0" column="5" selection-start="5" selection-end="5" vertical-scroll-proportion="0.0">
|
|
104
|
+
<folding />
|
|
105
|
+
</state>
|
|
106
|
+
</provider>
|
|
107
|
+
</entry>
|
|
108
|
+
</file>
|
|
109
|
+
<file leaf-file-name=".rvmrc" pinned="false" current="false" current-in-tab="false">
|
|
110
|
+
<entry file="file://$PROJECT_DIR$/.rvmrc">
|
|
111
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
112
|
+
<state line="3" column="19" selection-start="76" selection-end="76" vertical-scroll-proportion="0.0">
|
|
113
|
+
<folding />
|
|
114
|
+
</state>
|
|
115
|
+
</provider>
|
|
116
|
+
</entry>
|
|
117
|
+
</file>
|
|
118
|
+
</leaf>
|
|
119
|
+
</component>
|
|
120
|
+
<component name="FindManager">
|
|
121
|
+
<FindUsagesManager>
|
|
122
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
|
123
|
+
</FindUsagesManager>
|
|
124
|
+
</component>
|
|
125
|
+
<component name="Git.Settings">
|
|
126
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
127
|
+
</component>
|
|
128
|
+
<component name="IdeDocumentHistory">
|
|
129
|
+
<option name="changedFiles">
|
|
130
|
+
<list>
|
|
131
|
+
<option value="$PROJECT_DIR$/lib/tiny_cms.rb" />
|
|
132
|
+
<option value="$PROJECT_DIR$/lib/tiny_cms/version.rb" />
|
|
133
|
+
<option value="$PROJECT_DIR$/.rvmrc" />
|
|
134
|
+
<option value="$PROJECT_DIR$/CHANGES" />
|
|
135
|
+
<option value="$PROJECT_DIR$/tiny_cms.gemspec" />
|
|
136
|
+
<option value="$PROJECT_DIR$/README.md" />
|
|
137
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
|
138
|
+
</list>
|
|
139
|
+
</option>
|
|
140
|
+
</component>
|
|
141
|
+
<component name="ProjectFrameBounds">
|
|
142
|
+
<option name="x" value="332" />
|
|
143
|
+
<option name="y" value="39" />
|
|
144
|
+
<option name="width" value="1588" />
|
|
145
|
+
<option name="height" value="1058" />
|
|
146
|
+
</component>
|
|
147
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
148
|
+
<OptionsSetting value="true" id="Add" />
|
|
149
|
+
<OptionsSetting value="true" id="Remove" />
|
|
150
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
151
|
+
<OptionsSetting value="true" id="Update" />
|
|
152
|
+
<OptionsSetting value="true" id="Status" />
|
|
153
|
+
<OptionsSetting value="true" id="Edit" />
|
|
154
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
155
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
156
|
+
</component>
|
|
157
|
+
<component name="ProjectReloadState">
|
|
158
|
+
<option name="STATE" value="0" />
|
|
159
|
+
</component>
|
|
160
|
+
<component name="ProjectView">
|
|
161
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
|
162
|
+
<flattenPackages />
|
|
163
|
+
<showMembers />
|
|
164
|
+
<showModules />
|
|
165
|
+
<showLibraryContents />
|
|
166
|
+
<hideEmptyPackages />
|
|
167
|
+
<abbreviatePackageNames />
|
|
168
|
+
<autoscrollToSource />
|
|
169
|
+
<autoscrollFromSource />
|
|
170
|
+
<sortByType />
|
|
171
|
+
</navigator>
|
|
172
|
+
<panes>
|
|
173
|
+
<pane id="Scope" />
|
|
174
|
+
<pane id="ProjectPane">
|
|
175
|
+
<subPane>
|
|
176
|
+
<PATH>
|
|
177
|
+
<PATH_ELEMENT>
|
|
178
|
+
<option name="myItemId" value="tiny_cms" />
|
|
179
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
180
|
+
</PATH_ELEMENT>
|
|
181
|
+
</PATH>
|
|
182
|
+
<PATH>
|
|
183
|
+
<PATH_ELEMENT>
|
|
184
|
+
<option name="myItemId" value="tiny_cms" />
|
|
185
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
186
|
+
</PATH_ELEMENT>
|
|
187
|
+
<PATH_ELEMENT>
|
|
188
|
+
<option name="myItemId" value="tiny-cms" />
|
|
189
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
190
|
+
</PATH_ELEMENT>
|
|
191
|
+
</PATH>
|
|
192
|
+
<PATH>
|
|
193
|
+
<PATH_ELEMENT>
|
|
194
|
+
<option name="myItemId" value="tiny_cms" />
|
|
195
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
196
|
+
</PATH_ELEMENT>
|
|
197
|
+
<PATH_ELEMENT>
|
|
198
|
+
<option name="myItemId" value="tiny-cms" />
|
|
199
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
200
|
+
</PATH_ELEMENT>
|
|
201
|
+
<PATH_ELEMENT>
|
|
202
|
+
<option name="myItemId" value="lib" />
|
|
203
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
204
|
+
</PATH_ELEMENT>
|
|
205
|
+
</PATH>
|
|
206
|
+
<PATH>
|
|
207
|
+
<PATH_ELEMENT>
|
|
208
|
+
<option name="myItemId" value="tiny_cms" />
|
|
209
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
210
|
+
</PATH_ELEMENT>
|
|
211
|
+
<PATH_ELEMENT>
|
|
212
|
+
<option name="myItemId" value="tiny-cms" />
|
|
213
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
214
|
+
</PATH_ELEMENT>
|
|
215
|
+
<PATH_ELEMENT>
|
|
216
|
+
<option name="myItemId" value="lib" />
|
|
217
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
218
|
+
</PATH_ELEMENT>
|
|
219
|
+
<PATH_ELEMENT>
|
|
220
|
+
<option name="myItemId" value="tiny_cms" />
|
|
221
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
222
|
+
</PATH_ELEMENT>
|
|
223
|
+
</PATH>
|
|
224
|
+
</subPane>
|
|
225
|
+
</pane>
|
|
226
|
+
</panes>
|
|
227
|
+
</component>
|
|
228
|
+
<component name="RecentsManager">
|
|
229
|
+
<key name="MoveFile.RECENT_KEYS">
|
|
230
|
+
<recent name="$PROJECT_DIR$/lib/tiny_cms" />
|
|
231
|
+
</key>
|
|
232
|
+
</component>
|
|
233
|
+
<component name="RunManager">
|
|
234
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
|
235
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
|
236
|
+
<module name="" />
|
|
237
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
238
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
239
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
240
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
241
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
242
|
+
<envs />
|
|
243
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
244
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
245
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
246
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
247
|
+
</COVERAGE_PATTERN>
|
|
248
|
+
</EXTENSION>
|
|
249
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
250
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
251
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
|
252
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
|
253
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
|
254
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
255
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
|
256
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
257
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
|
258
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
259
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
260
|
+
<method />
|
|
261
|
+
</configuration>
|
|
262
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
|
263
|
+
<module name="" />
|
|
264
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
265
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
|
266
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
267
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
268
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
|
269
|
+
<envs />
|
|
270
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
271
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
272
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
273
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
274
|
+
</COVERAGE_PATTERN>
|
|
275
|
+
</EXTENSION>
|
|
276
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
|
277
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
278
|
+
<method />
|
|
279
|
+
</configuration>
|
|
280
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
|
281
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
|
282
|
+
<module name="" />
|
|
283
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
284
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
285
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
286
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
287
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
288
|
+
<envs />
|
|
289
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
290
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
291
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
292
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
293
|
+
</COVERAGE_PATTERN>
|
|
294
|
+
</EXTENSION>
|
|
295
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
296
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
297
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
|
298
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
|
299
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
300
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
301
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
|
302
|
+
<method />
|
|
303
|
+
</configuration>
|
|
304
|
+
<list size="0" />
|
|
305
|
+
</component>
|
|
306
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
|
307
|
+
<component name="ToolWindowManager">
|
|
308
|
+
<frame x="332" y="39" width="1588" height="1058" extended-state="0" />
|
|
309
|
+
<editor active="false" />
|
|
310
|
+
<layout>
|
|
311
|
+
<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="7" side_tool="false" content_ui="tabs" />
|
|
312
|
+
<window_info id="CSS-X-Fire" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
313
|
+
<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" />
|
|
314
|
+
<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="true" content_ui="tabs" />
|
|
315
|
+
<window_info id="jenkinsBrowser" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
316
|
+
<window_info id="Project" active="true" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.25" sideWeight="0.67013526" order="0" side_tool="false" content_ui="combo" />
|
|
317
|
+
<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" />
|
|
318
|
+
<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="2" side_tool="true" content_ui="tabs" />
|
|
319
|
+
<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="7" side_tool="true" content_ui="tabs" />
|
|
320
|
+
<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" />
|
|
321
|
+
<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="7" side_tool="false" content_ui="tabs" />
|
|
322
|
+
<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" />
|
|
323
|
+
<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" />
|
|
324
|
+
<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" />
|
|
325
|
+
<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" />
|
|
326
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3298647" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
327
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
328
|
+
<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" />
|
|
329
|
+
<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" />
|
|
330
|
+
</layout>
|
|
331
|
+
</component>
|
|
332
|
+
<component name="VcsContentAnnotationSettings">
|
|
333
|
+
<option name="myLimit" value="2678400000" />
|
|
334
|
+
</component>
|
|
335
|
+
<component name="VcsManagerConfiguration">
|
|
336
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
|
337
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
|
338
|
+
<option name="CHECK_NEW_TODO" value="true" />
|
|
339
|
+
<option name="myTodoPanelSettings">
|
|
340
|
+
<value>
|
|
341
|
+
<are-packages-shown value="false" />
|
|
342
|
+
<are-modules-shown value="false" />
|
|
343
|
+
<flatten-packages value="false" />
|
|
344
|
+
<is-autoscroll-to-source value="false" />
|
|
345
|
+
</value>
|
|
346
|
+
</option>
|
|
347
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
|
348
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
|
349
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
|
350
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
|
351
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
|
352
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
|
353
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
|
354
|
+
<option name="ENABLE_BACKGROUND_PROCESSES" value="false" />
|
|
355
|
+
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
|
356
|
+
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
|
357
|
+
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
|
358
|
+
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
|
359
|
+
<option name="SHORT_DIFF_HORISONTALLY" value="true" />
|
|
360
|
+
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
|
361
|
+
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
|
362
|
+
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
|
363
|
+
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
|
364
|
+
<option name="CREATE_PATCH_EXPAND_DETAILS_DEFAULT" value="true" />
|
|
365
|
+
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
|
366
|
+
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
|
367
|
+
<option name="CHANGE_DETAILS_ON" value="false" />
|
|
368
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
|
369
|
+
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
|
370
|
+
<option name="LAST_COMMIT_MESSAGE" />
|
|
371
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
|
372
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
|
373
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
|
374
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
|
375
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
|
376
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
|
377
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
|
378
|
+
<option name="ACTIVE_VCS_NAME" />
|
|
379
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
|
380
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
|
381
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
|
382
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
|
383
|
+
</component>
|
|
384
|
+
<component name="XDebuggerManager">
|
|
385
|
+
<breakpoint-manager />
|
|
386
|
+
</component>
|
|
387
|
+
<component name="editorHistoryManager">
|
|
388
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
|
389
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
390
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
391
|
+
<folding />
|
|
392
|
+
</state>
|
|
393
|
+
</provider>
|
|
394
|
+
</entry>
|
|
395
|
+
<entry file="file://$PROJECT_DIR$/.rvmrc">
|
|
396
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
397
|
+
<state line="3" column="22" selection-start="79" selection-end="79" vertical-scroll-proportion="0.0">
|
|
398
|
+
<folding />
|
|
399
|
+
</state>
|
|
400
|
+
</provider>
|
|
401
|
+
</entry>
|
|
402
|
+
<entry file="file://$PROJECT_DIR$/CHANGES">
|
|
403
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
404
|
+
<state line="4" column="15" selection-start="55" selection-end="55" vertical-scroll-proportion="0.0">
|
|
405
|
+
<folding />
|
|
406
|
+
</state>
|
|
407
|
+
</provider>
|
|
408
|
+
</entry>
|
|
409
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
410
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
411
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
412
|
+
<folding />
|
|
413
|
+
</state>
|
|
414
|
+
</provider>
|
|
415
|
+
</entry>
|
|
416
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
417
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
418
|
+
<state line="20" column="31" selection-start="358" selection-end="358" vertical-scroll-proportion="0.0">
|
|
419
|
+
<folding />
|
|
420
|
+
</state>
|
|
421
|
+
</provider>
|
|
422
|
+
</entry>
|
|
423
|
+
<entry file="file://$PROJECT_DIR$/tiny-cms.gemspec">
|
|
424
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
425
|
+
<state line="7" column="52" selection-start="276" selection-end="276" vertical-scroll-proportion="0.0">
|
|
426
|
+
<folding />
|
|
427
|
+
</state>
|
|
428
|
+
</provider>
|
|
429
|
+
</entry>
|
|
430
|
+
<entry file="file://$PROJECT_DIR$/tiny-cms.gemspec">
|
|
431
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
432
|
+
<state line="10" column="54" selection-start="428" selection-end="428" vertical-scroll-proportion="0.0">
|
|
433
|
+
<folding />
|
|
434
|
+
</state>
|
|
435
|
+
</provider>
|
|
436
|
+
</entry>
|
|
437
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
438
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
439
|
+
<state line="0" column="5" selection-start="5" selection-end="5" vertical-scroll-proportion="0.0">
|
|
440
|
+
<folding />
|
|
441
|
+
</state>
|
|
442
|
+
</provider>
|
|
443
|
+
</entry>
|
|
444
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
445
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
446
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
447
|
+
<folding />
|
|
448
|
+
</state>
|
|
449
|
+
</provider>
|
|
450
|
+
</entry>
|
|
451
|
+
<entry file="file://$PROJECT_DIR$/CHANGES">
|
|
452
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
453
|
+
<state line="4" column="15" selection-start="55" selection-end="55" vertical-scroll-proportion="0.0">
|
|
454
|
+
<folding />
|
|
455
|
+
</state>
|
|
456
|
+
</provider>
|
|
457
|
+
</entry>
|
|
458
|
+
<entry file="file://$PROJECT_DIR$/.rvmrc">
|
|
459
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
460
|
+
<state line="3" column="19" selection-start="76" selection-end="76" vertical-scroll-proportion="0.0">
|
|
461
|
+
<folding />
|
|
462
|
+
</state>
|
|
463
|
+
</provider>
|
|
464
|
+
</entry>
|
|
465
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
|
466
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
467
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
468
|
+
<folding />
|
|
469
|
+
</state>
|
|
470
|
+
</provider>
|
|
471
|
+
</entry>
|
|
472
|
+
<entry file="file://$PROJECT_DIR$/lib/tiny_cms.rb">
|
|
473
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
474
|
+
<state line="1" column="0" selection-start="19" selection-end="19" vertical-scroll-proportion="0.0" />
|
|
475
|
+
</provider>
|
|
476
|
+
</entry>
|
|
477
|
+
<entry file="file://$PROJECT_DIR$/lib/tiny_cms/tiny_cms.rb">
|
|
478
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
479
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
|
480
|
+
<folding />
|
|
481
|
+
</state>
|
|
482
|
+
</provider>
|
|
483
|
+
</entry>
|
|
484
|
+
<entry file="file://$PROJECT_DIR$/lib/tiny_cms/version.rb">
|
|
485
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
486
|
+
<state line="0" column="14" selection-start="14" selection-end="14" vertical-scroll-proportion="0.0">
|
|
487
|
+
<folding />
|
|
488
|
+
</state>
|
|
489
|
+
</provider>
|
|
490
|
+
</entry>
|
|
491
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
492
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
493
|
+
<state line="12" column="24" selection-start="205" selection-end="227" vertical-scroll-proportion="0.21052632">
|
|
494
|
+
<folding />
|
|
495
|
+
</state>
|
|
496
|
+
</provider>
|
|
497
|
+
</entry>
|
|
498
|
+
</component>
|
|
499
|
+
</project>
|
|
500
|
+
|
data/.rvmrc
ADDED
data/CHANGES
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
#!/usr/bin/env rake
|
|
2
|
+
|
|
3
|
+
$LOAD_PATH.unshift File.expand_path("lib", File.dirname(__FILE__))
|
|
4
|
+
|
|
5
|
+
require "rspec/core/rake_task"
|
|
6
|
+
require "tiny_cms/version"
|
|
7
|
+
|
|
8
|
+
def version
|
|
9
|
+
TinyCms::VERSION
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def project_name
|
|
13
|
+
File.basename(Dir.pwd)
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
task :build do
|
|
17
|
+
system "gem build #{project_name}.gemspec"
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
task :release => :build do
|
|
21
|
+
system "gem push #{project_name}-#{version}.gem"
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
RSpec::Core::RakeTask.new do |task|
|
|
25
|
+
task.pattern = 'spec/**/*_spec.rb'
|
|
26
|
+
task.verbose = false
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
|
data/lib/tiny_cms.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'tiny_cms'
|
data/tiny-cms.gemspec
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/lib/tiny_cms/version')
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "tiny-cms"
|
|
7
|
+
spec.summary = %q{Simple placeholder for CMS}
|
|
8
|
+
spec.description = %q{Simple placeholder for CMS}
|
|
9
|
+
spec.email = "alexander.shvets@gmail.com"
|
|
10
|
+
spec.authors = ["Alexander Shvets"]
|
|
11
|
+
spec.homepage = "http://github.com/shvets/tiny-cms"
|
|
12
|
+
|
|
13
|
+
spec.files = `git ls-files`.split($\)
|
|
14
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
15
|
+
spec.require_paths = ["lib"]
|
|
16
|
+
spec.version = TinyCms::VERSION
|
|
17
|
+
end
|
|
18
|
+
|
metadata
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: tiny-cms
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Alexander Shvets
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-06-08 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: Simple placeholder for CMS
|
|
15
|
+
email: alexander.shvets@gmail.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- .gitignore
|
|
21
|
+
- .idea/.name
|
|
22
|
+
- .idea/.rakeTasks
|
|
23
|
+
- .idea/cssxfire.xml
|
|
24
|
+
- .idea/encodings.xml
|
|
25
|
+
- .idea/misc.xml
|
|
26
|
+
- .idea/modules.xml
|
|
27
|
+
- .idea/scopes/scope_settings.xml
|
|
28
|
+
- .idea/tiny_cms.iml
|
|
29
|
+
- .idea/vcs.xml
|
|
30
|
+
- .idea/workspace.xml
|
|
31
|
+
- .rvmrc
|
|
32
|
+
- CHANGES
|
|
33
|
+
- Gemfile
|
|
34
|
+
- README.md
|
|
35
|
+
- Rakefile
|
|
36
|
+
- lib/tiny_cms.rb
|
|
37
|
+
- lib/tiny_cms/tiny_cms.rb
|
|
38
|
+
- lib/tiny_cms/version.rb
|
|
39
|
+
- tiny-cms.gemspec
|
|
40
|
+
homepage: http://github.com/shvets/tiny-cms
|
|
41
|
+
licenses: []
|
|
42
|
+
post_install_message:
|
|
43
|
+
rdoc_options: []
|
|
44
|
+
require_paths:
|
|
45
|
+
- lib
|
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
47
|
+
none: false
|
|
48
|
+
requirements:
|
|
49
|
+
- - ! '>='
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '0'
|
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
|
+
none: false
|
|
54
|
+
requirements:
|
|
55
|
+
- - ! '>='
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: '0'
|
|
58
|
+
requirements: []
|
|
59
|
+
rubyforge_project:
|
|
60
|
+
rubygems_version: 1.8.23
|
|
61
|
+
signing_key:
|
|
62
|
+
specification_version: 3
|
|
63
|
+
summary: Simple placeholder for CMS
|
|
64
|
+
test_files: []
|