turbosack 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +10 -0
  4. data/.idea/.rakeTasks +7 -0
  5. data/.idea/modules.xml +8 -0
  6. data/.idea/turbolog.iml +42 -0
  7. data/.idea/vcs.xml +6 -0
  8. data/.idea/workspace.xml +217 -0
  9. data/.rspec +3 -0
  10. data/.travis.yml +21 -0
  11. data/CODE_OF_CONDUCT.md +74 -0
  12. data/Gemfile +6 -0
  13. data/Guardfile +12 -0
  14. data/LICENSE.txt +21 -0
  15. data/README.md +81 -0
  16. data/Rakefile +21 -0
  17. data/bin/console +14 -0
  18. data/bin/setup +8 -0
  19. data/lib/generators/turbosack/config_generator.rb +138 -0
  20. data/lib/generators/turbosack/install_generator.rb +67 -0
  21. data/lib/generators/turbosack/templates/.env +2 -0
  22. data/lib/generators/turbosack/templates/.gitignore +21 -0
  23. data/lib/generators/turbosack/templates/.rspec +2 -0
  24. data/lib/generators/turbosack/templates/app/controllers/Users/omniauth_callbacks_controller.rb +6 -0
  25. data/lib/generators/turbosack/templates/app/helpers/application_helper.rb +10 -0
  26. data/lib/generators/turbosack/templates/app/models/user.rb +12 -0
  27. data/lib/generators/turbosack/templates/application_controller_spec.rb +8 -0
  28. data/lib/generators/turbosack/templates/lib/string_calculator.rb +12 -0
  29. data/lib/generators/turbosack/templates/routes.rb +6 -0
  30. data/lib/generators/turbosack/templates/spec/controllers/welcomes_controller_spec.rb +86 -0
  31. data/lib/generators/turbosack/templates/spec/factories/users.rb +15 -0
  32. data/lib/generators/turbosack/templates/spec/factories/welcomes.rb +5 -0
  33. data/lib/generators/turbosack/templates/spec/helpers/welcomes_helper_spec.rb +23 -0
  34. data/lib/generators/turbosack/templates/spec/models/welcome_spec.rb +17 -0
  35. data/lib/generators/turbosack/templates/spec/rails_helper.rb +23 -0
  36. data/lib/generators/turbosack/templates/spec/requests/welcomes_spec.rb +16 -0
  37. data/lib/generators/turbosack/templates/spec/spec_helper.rb +96 -0
  38. data/lib/generators/turbosack/templates/spec/support/controller_helper.rb +12 -0
  39. data/lib/generators/turbosack/templates/spec/support/database_cleaner.rb +73 -0
  40. data/lib/generators/turbosack/templates/spec/support/devise.rb +8 -0
  41. data/lib/generators/turbosack/templates/spec/welcomes_controller_spec.rb +86 -0
  42. data/lib/tasks/turbosack.rake +28 -0
  43. data/lib/turbosack.rb +6 -0
  44. data/lib/turbosack/helpers.rb +11 -0
  45. data/lib/turbosack/railtie.rb +18 -0
  46. data/lib/turbosack/version.rb +3 -0
  47. data/turbosack.gemspec +35 -0
  48. metadata +258 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 16f91269660e7f2d4ac68bffbd7177d4c6e69303adbe02aa5fce0d328f7896d0
4
+ data.tar.gz: 7730239f389650089aae0117d7ea2b85a0564bcec7a7a248823418699207c13c
5
+ SHA512:
6
+ metadata.gz: dcb5db9e215401537a9df1bf284e6fbebef2f7e0b96daa5abb5505a6b1fe4218b4b5932e82d27224bc39328f18d709fa59497cc6c439415df92187224f4fbbea
7
+ data.tar.gz: 194fdc68a4bab31ba03c09932761821702d524bad2a1bc2d9f8643603c2cd7918948a3d3c1974fea023f31a9bdea81cd0816d6270b785ae213d8ad3c9a123e5f
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /lib/turbolog/templates/.env
10
+
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"><RakeTask description="Build turbolog-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 turbolog-0.1.0.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install turbolog-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 turbolog-0.1.0.gem to rubygems.org" 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/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/turbolog.iml" filepath="$PROJECT_DIR$/.idea/turbolog.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,42 @@
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.1, RVM: ruby-2.4.1) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="coderay (v1.1.2, RVM: ruby-2.4.1) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.4.1) [gem]" level="application" />
13
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.9.21, RVM: ruby-2.4.1) [gem]" level="application" />
14
+ <orderEntry type="library" scope="PROVIDED" name="formatador (v0.2.5, RVM: ruby-2.4.1) [gem]" level="application" />
15
+ <orderEntry type="library" scope="PROVIDED" name="guard (v2.14.2, RVM: ruby-2.4.1) [gem]" level="application" />
16
+ <orderEntry type="library" scope="PROVIDED" name="guard-compat (v1.2.1, RVM: ruby-2.4.1) [gem]" level="application" />
17
+ <orderEntry type="library" scope="PROVIDED" name="guard-rspec (v4.7.3, RVM: ruby-2.4.1) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="listen (v3.1.5, RVM: ruby-2.4.1) [gem]" level="application" />
19
+ <orderEntry type="library" scope="PROVIDED" name="lumberjack (v1.0.12, RVM: ruby-2.4.1) [gem]" level="application" />
20
+ <orderEntry type="library" scope="PROVIDED" name="method_source (v0.8.2, RVM: ruby-2.4.1) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="minitest (v5.11.3, RVM: ruby-2.4.1) [gem]" level="application" />
22
+ <orderEntry type="library" scope="PROVIDED" name="nenv (v0.3.0, RVM: ruby-2.4.1) [gem]" level="application" />
23
+ <orderEntry type="library" scope="PROVIDED" name="notiffany (v0.1.1, RVM: ruby-2.4.1) [gem]" level="application" />
24
+ <orderEntry type="library" scope="PROVIDED" name="pry (v0.11.3, RVM: ruby-2.4.1) [gem]" level="application" />
25
+ <orderEntry type="library" scope="PROVIDED" name="pry-nav (v0.2.4, RVM: ruby-2.4.1) [gem]" level="application" />
26
+ <orderEntry type="library" scope="PROVIDED" name="pry-remote (v0.1.8, RVM: ruby-2.4.1) [gem]" level="application" />
27
+ <orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, RVM: ruby-2.4.1) [gem]" level="application" />
28
+ <orderEntry type="library" scope="PROVIDED" name="rb-fsevent (v0.10.2, RVM: ruby-2.4.1) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="rb-inotify (v0.9.10, RVM: ruby-2.4.1) [gem]" level="application" />
30
+ <orderEntry type="library" scope="PROVIDED" name="rspec (v3.7.0, RVM: ruby-2.4.1) [gem]" level="application" />
31
+ <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.7.1, RVM: ruby-2.4.1) [gem]" level="application" />
32
+ <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.7.0, RVM: ruby-2.4.1) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.7.0, RVM: ruby-2.4.1) [gem]" level="application" />
34
+ <orderEntry type="library" scope="PROVIDED" name="rspec-nc (v0.3.0, RVM: ruby-2.4.1) [gem]" level="application" />
35
+ <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.7.1, RVM: ruby-2.4.1) [gem]" level="application" />
36
+ <orderEntry type="library" scope="PROVIDED" name="ruby_dep (v1.5.0, RVM: ruby-2.4.1) [gem]" level="application" />
37
+ <orderEntry type="library" scope="PROVIDED" name="shellany (v0.0.1, RVM: ruby-2.4.1) [gem]" level="application" />
38
+ <orderEntry type="library" scope="PROVIDED" name="slop (v3.6.0, RVM: ruby-2.4.1) [gem]" level="application" />
39
+ <orderEntry type="library" scope="PROVIDED" name="terminal-notifier (v2.0.0, RVM: ruby-2.4.1) [gem]" level="application" />
40
+ <orderEntry type="library" scope="PROVIDED" name="thor (v0.20.0, RVM: ruby-2.4.1) [gem]" level="application" />
41
+ </component>
42
+ </module>
data/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,217 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ChangeListManager">
4
+ <list default="true" id="103acaee-3a49-4b33-9f69-7529104273a3" name="Default" comment="" />
5
+ <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
6
+ <option name="TRACKING_ENABLED" value="true" />
7
+ <option name="SHOW_DIALOG" value="false" />
8
+ <option name="HIGHLIGHT_CONFLICTS" value="true" />
9
+ <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
10
+ <option name="LAST_RESOLUTION" value="IGNORE" />
11
+ </component>
12
+ <component name="CoverageDataManager">
13
+ <SUITE FILE_PATH="coverage/turbolog@turbolog.coverage" NAME="turbolog Coverage Results" MODIFIED="1518103961523" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/lib/tasks" MODULE_NAME="turbolog" />
14
+ </component>
15
+ <component name="FileEditorManager">
16
+ <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
17
+ <file leaf-file-name="turbolog.rake" pinned="false" current-in-tab="true">
18
+ <entry file="file://$PROJECT_DIR$/lib/tasks/turbolog.rake">
19
+ <provider selected="true" editor-type-id="text-editor">
20
+ <state relative-caret-position="90">
21
+ <caret line="6" column="21" lean-forward="false" selection-start-line="6" selection-start-column="21" selection-end-line="6" selection-end-column="21" />
22
+ <folding />
23
+ </state>
24
+ </provider>
25
+ </entry>
26
+ </file>
27
+ </leaf>
28
+ </component>
29
+ <component name="Git.Settings">
30
+ <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
31
+ </component>
32
+ <component name="IdeDocumentHistory">
33
+ <option name="CHANGED_PATHS">
34
+ <list>
35
+ <option value="$PROJECT_DIR$/lib/tasks/turbolog.rake" />
36
+ </list>
37
+ </option>
38
+ </component>
39
+ <component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
40
+ <component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
41
+ <component name="JsGulpfileManager">
42
+ <detection-done>true</detection-done>
43
+ <sorting>DEFINITION_ORDER</sorting>
44
+ </component>
45
+ <component name="ProjectFrameBounds">
46
+ <option name="x" value="498" />
47
+ <option name="y" value="-1038" />
48
+ <option name="width" value="979" />
49
+ <option name="height" value="662" />
50
+ </component>
51
+ <component name="ProjectView">
52
+ <navigator currentView="ProjectPane" proportions="" version="1">
53
+ <flattenPackages />
54
+ <showMembers />
55
+ <showModules />
56
+ <showLibraryContents />
57
+ <hideEmptyPackages />
58
+ <abbreviatePackageNames />
59
+ <autoscrollToSource />
60
+ <autoscrollFromSource />
61
+ <sortByType />
62
+ <manualOrder />
63
+ <foldersAlwaysOnTop value="true" />
64
+ </navigator>
65
+ <panes>
66
+ <pane id="Scratches" />
67
+ <pane id="Scope" />
68
+ <pane id="ProjectPane">
69
+ <subPane>
70
+ <expand>
71
+ <path>
72
+ <item name="turbolog" type="b2602c69:ProjectViewProjectNode" />
73
+ <item name="turbolog" type="462c0819:PsiDirectoryNode" />
74
+ </path>
75
+ <path>
76
+ <item name="turbolog" type="b2602c69:ProjectViewProjectNode" />
77
+ <item name="turbolog" type="462c0819:PsiDirectoryNode" />
78
+ <item name="lib" type="462c0819:PsiDirectoryNode" />
79
+ </path>
80
+ <path>
81
+ <item name="turbolog" type="b2602c69:ProjectViewProjectNode" />
82
+ <item name="turbolog" type="462c0819:PsiDirectoryNode" />
83
+ <item name="lib" type="462c0819:PsiDirectoryNode" />
84
+ <item name="tasks" type="462c0819:PsiDirectoryNode" />
85
+ </path>
86
+ </expand>
87
+ <select />
88
+ </subPane>
89
+ </pane>
90
+ </panes>
91
+ </component>
92
+ <component name="PropertiesComponent">
93
+ <property name="settings.editor.selected.configurable" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
94
+ <property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
95
+ <property name="WebServerToolWindowFactoryState" value="false" />
96
+ <property name="last_opened_file_path" value="$PROJECT_DIR$" />
97
+ </component>
98
+ <component name="RunDashboard">
99
+ <option name="ruleStates">
100
+ <list>
101
+ <RuleState>
102
+ <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
103
+ </RuleState>
104
+ <RuleState>
105
+ <option name="name" value="StatusDashboardGroupingRule" />
106
+ </RuleState>
107
+ </list>
108
+ </option>
109
+ </component>
110
+ <component name="RunManager">
111
+ <configuration name="turbolog" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
112
+ <module name="turbolog" />
113
+ <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
114
+ <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$MODULE_DIR$/lib/tasks" />
115
+ <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
116
+ <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
117
+ <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
118
+ <envs />
119
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
120
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
121
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
122
+ <COVERAGE_PATTERN ENABLED="true">
123
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
124
+ </COVERAGE_PATTERN>
125
+ </EXTENSION>
126
+ <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/lib/tasks/turbolog.rake" />
127
+ <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
128
+ </configuration>
129
+ <recent_temporary>
130
+ <list size="1">
131
+ <item index="0" class="java.lang.String" itemvalue="Ruby.turbolog" />
132
+ </list>
133
+ </recent_temporary>
134
+ </component>
135
+ <component name="ShelveChangesManager" show_recycled="false">
136
+ <option name="remove_strategy" value="false" />
137
+ </component>
138
+ <component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
139
+ <component name="SvnConfiguration">
140
+ <configuration />
141
+ </component>
142
+ <component name="TaskManager">
143
+ <task active="true" id="Default" summary="Default task">
144
+ <changelist id="103acaee-3a49-4b33-9f69-7529104273a3" name="Default" comment="" />
145
+ <created>1518041171796</created>
146
+ <option name="number" value="Default" />
147
+ <option name="presentableId" value="Default" />
148
+ <updated>1518041171796</updated>
149
+ <workItem from="1518041173110" duration="1010000" />
150
+ <workItem from="1518295185190" duration="24000" />
151
+ </task>
152
+ <servers />
153
+ </component>
154
+ <component name="TimeTrackingManager">
155
+ <option name="totallyTimeSpent" value="1034000" />
156
+ </component>
157
+ <component name="ToolWindowManager">
158
+ <frame x="498" y="-1038" width="979" height="662" extended-state="0" />
159
+ <editor active="true" />
160
+ <layout>
161
+ <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25506938" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
162
+ <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" />
163
+ <window_info id="Docker" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
164
+ <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="7" side_tool="true" content_ui="tabs" />
165
+ <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="3" side_tool="false" content_ui="tabs" />
166
+ <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="7" side_tool="false" content_ui="tabs" />
167
+ <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32911393" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
168
+ <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" />
169
+ <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3290441" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
170
+ <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="2" side_tool="true" content_ui="tabs" />
171
+ <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.39889705" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
172
+ <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" />
173
+ <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" />
174
+ <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" />
175
+ <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" />
176
+ <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" />
177
+ <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" />
178
+ <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" />
179
+ </layout>
180
+ </component>
181
+ <component name="TypeScriptGeneratedFilesManager">
182
+ <option name="version" value="1" />
183
+ </component>
184
+ <component name="VcsContentAnnotationSettings">
185
+ <option name="myLimit" value="2678400000" />
186
+ </component>
187
+ <component name="XDebuggerManager">
188
+ <breakpoint-manager>
189
+ <breakpoints>
190
+ <line-breakpoint enabled="true" type="ruby-line">
191
+ <url>file://$PROJECT_DIR$/lib/tasks/turbolog.rake</url>
192
+ <line>16</line>
193
+ </line-breakpoint>
194
+ </breakpoints>
195
+ <option name="time" value="1" />
196
+ </breakpoint-manager>
197
+ <watches-manager />
198
+ </component>
199
+ <component name="editorHistoryManager">
200
+ <entry file="file://$PROJECT_DIR$/lib/tasks/turbolog.rake">
201
+ <provider selected="true" editor-type-id="text-editor">
202
+ <state relative-caret-position="0">
203
+ <caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
204
+ <folding />
205
+ </state>
206
+ </provider>
207
+ </entry>
208
+ <entry file="file://$PROJECT_DIR$/lib/tasks/turbolog.rake">
209
+ <provider selected="true" editor-type-id="text-editor">
210
+ <state relative-caret-position="90">
211
+ <caret line="6" column="21" lean-forward="false" selection-start-line="6" selection-start-column="21" selection-end-line="6" selection-end-column="21" />
212
+ <folding />
213
+ </state>
214
+ </provider>
215
+ </entry>
216
+ </component>
217
+ </project>
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format=progress
2
+ --colour
3
+ --format doc
data/.travis.yml ADDED
@@ -0,0 +1,21 @@
1
+
2
+ language: ruby
3
+ cache: bundler
4
+
5
+ rvm:
6
+ - ruby
7
+ - 2.4.1
8
+
9
+ script: 'bundle exec rake'
10
+
11
+ notifications:
12
+ email:
13
+ recipients:
14
+ - 1.0@kul.asia
15
+ on_failure: change
16
+ on_success: never
17
+
18
+
19
+ sudo: false
20
+
21
+ before_install: gem install bundler -v 1.16.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at 1.0@kul.asia. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/kul1/turbolog.git" }
4
+
5
+ # Specify your gem's dependencies in turbolog.gemspec
6
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,12 @@
1
+
2
+ guard 'rspec' do
3
+ # watch /lib/ files
4
+ watch(%r{^lib/(.+).rb$}) do |m|
5
+ "spec/#{m[1]}_spec.rb"
6
+ end
7
+
8
+ # watch /spec/ files
9
+ watch(%r{^spec/(.+).rb$}) do |m|
10
+ "spec/#{m[1]}.rb"
11
+ end
12
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 P Kul
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.