trinamo 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 +108 -0
- data/.idea/encodings.xml +6 -0
- data/.idea/misc.xml +14 -0
- data/.idea/modules.xml +8 -0
- data/.idea/trinamo.iml +52 -0
- data/.idea/workspace.xml +714 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/trinamo/hive_type.rb +13 -0
- data/lib/trinamo/version.rb +3 -0
- data/lib/trinamo.rb +7 -0
- data/trinamo.gemspec +27 -0
- metadata +133 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: a9f5ffc075b447acba09cc09f5c5422858c887cf
|
|
4
|
+
data.tar.gz: e5d3de4c641e481365f9ef0bf3d80b20dd2356b2
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e91bcd9fd3b6883fbd039ae1c611e07d33be735cdb3ca56169b579230aad5a54084823eea2624aae21f9090368a1f3f2def0e7563d0b611016bfff9a7d1e0621
|
|
7
|
+
data.tar.gz: 2b4cad56a5dbda92a7945765b8adb897ea6bf7d77556225dc9fa59a64e6c8529f705f047dbb3e36d05c5d9c33403c7288c68d9703e79faca81a408140ac4d91c
|
data/.gitignore
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
|
|
2
|
+
# Created by https://www.gitignore.io/api/ruby,rubymine
|
|
3
|
+
|
|
4
|
+
### Ruby ###
|
|
5
|
+
*.gem
|
|
6
|
+
*.rbc
|
|
7
|
+
/.config
|
|
8
|
+
/coverage/
|
|
9
|
+
/InstalledFiles
|
|
10
|
+
/pkg/
|
|
11
|
+
/spec/reports/
|
|
12
|
+
/spec/examples.txt
|
|
13
|
+
/test/tmp/
|
|
14
|
+
/test/version_tmp/
|
|
15
|
+
/tmp/
|
|
16
|
+
/Gemfile.lock
|
|
17
|
+
|
|
18
|
+
# Used by dotenv library to load environment variables.
|
|
19
|
+
# .env
|
|
20
|
+
|
|
21
|
+
## Specific to RubyMotion:
|
|
22
|
+
.dat*
|
|
23
|
+
.repl_history
|
|
24
|
+
build/
|
|
25
|
+
*.bridgesupport
|
|
26
|
+
build-iPhoneOS/
|
|
27
|
+
build-iPhoneSimulator/
|
|
28
|
+
|
|
29
|
+
## Specific to RubyMotion (use of CocoaPods):
|
|
30
|
+
#
|
|
31
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
32
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
33
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
34
|
+
#
|
|
35
|
+
# vendor/Pods/
|
|
36
|
+
|
|
37
|
+
## Documentation cache and generated files:
|
|
38
|
+
/.yardoc/
|
|
39
|
+
/_yardoc/
|
|
40
|
+
/doc/
|
|
41
|
+
/rdoc/
|
|
42
|
+
|
|
43
|
+
## Environment normalization:
|
|
44
|
+
/.bundle/
|
|
45
|
+
/vendor/bundle
|
|
46
|
+
/lib/bundler/man/
|
|
47
|
+
|
|
48
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
49
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
50
|
+
# Gemfile.lock
|
|
51
|
+
# .ruby-version
|
|
52
|
+
# .ruby-gemset
|
|
53
|
+
|
|
54
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
55
|
+
.rvmrc
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### RubyMine ###
|
|
59
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
60
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
61
|
+
|
|
62
|
+
# User-specific stuff:
|
|
63
|
+
.idea/workspace.xml
|
|
64
|
+
.idea/tasks.xml
|
|
65
|
+
.idea/dictionaries
|
|
66
|
+
.idea/vcs.xml
|
|
67
|
+
.idea/jsLibraryMappings.xml
|
|
68
|
+
|
|
69
|
+
# Sensitive or high-churn files:
|
|
70
|
+
.idea/dataSources.ids
|
|
71
|
+
.idea/dataSources.xml
|
|
72
|
+
.idea/dataSources.local.xml
|
|
73
|
+
.idea/sqlDataSources.xml
|
|
74
|
+
.idea/dynamic.xml
|
|
75
|
+
.idea/uiDesigner.xml
|
|
76
|
+
|
|
77
|
+
# Gradle:
|
|
78
|
+
.idea/gradle.xml
|
|
79
|
+
.idea/libraries
|
|
80
|
+
|
|
81
|
+
# Mongo Explorer plugin:
|
|
82
|
+
.idea/mongoSettings.xml
|
|
83
|
+
|
|
84
|
+
## File-based project format:
|
|
85
|
+
*.iws
|
|
86
|
+
|
|
87
|
+
## Plugin-specific files:
|
|
88
|
+
|
|
89
|
+
# IntelliJ
|
|
90
|
+
/out/
|
|
91
|
+
|
|
92
|
+
# mpeltonen/sbt-idea plugin
|
|
93
|
+
.idea_modules/
|
|
94
|
+
|
|
95
|
+
# JIRA plugin
|
|
96
|
+
atlassian-ide-plugin.xml
|
|
97
|
+
|
|
98
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
99
|
+
com_crashlytics_export_strings.xml
|
|
100
|
+
crashlytics.properties
|
|
101
|
+
crashlytics-build.properties
|
|
102
|
+
fabric.properties
|
|
103
|
+
|
|
104
|
+
### RubyMine Patch ###
|
|
105
|
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
106
|
+
|
|
107
|
+
# *.iml
|
|
108
|
+
# modules.xml
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
4
|
+
<OptionsSetting value="true" id="Add" />
|
|
5
|
+
<OptionsSetting value="true" id="Remove" />
|
|
6
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
7
|
+
<OptionsSetting value="true" id="Update" />
|
|
8
|
+
<OptionsSetting value="true" id="Status" />
|
|
9
|
+
<OptionsSetting value="true" id="Edit" />
|
|
10
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
11
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.1.5-p273" project-jdk-type="RUBY_SDK" />
|
|
14
|
+
</project>
|
data/.idea/modules.xml
ADDED
data/.idea/trinamo.iml
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="FacetManager">
|
|
4
|
+
<facet type="gem" name="New Gem">
|
|
5
|
+
<configuration>
|
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="$MODULE_DIR$/test" />
|
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
|
9
|
+
</configuration>
|
|
10
|
+
</facet>
|
|
11
|
+
</component>
|
|
12
|
+
<component name="ModuleRunConfigurationManager">
|
|
13
|
+
<configuration default="false" name="test.rb" type="RubyRunConfigurationType" factoryName="Ruby">
|
|
14
|
+
<module name="trinamo" />
|
|
15
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
16
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
|
17
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
18
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
19
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
|
20
|
+
<envs />
|
|
21
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
|
22
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
23
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
|
24
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/test.rb" />
|
|
25
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
26
|
+
<method />
|
|
27
|
+
</configuration>
|
|
28
|
+
</component>
|
|
29
|
+
<component name="NewModuleRootManager">
|
|
30
|
+
<content url="file://$MODULE_DIR$">
|
|
31
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
|
32
|
+
<excludeFolder url="file://$MODULE_DIR$/.bundle" />
|
|
33
|
+
<excludeFolder url="file://$MODULE_DIR$/vendor/bundle" />
|
|
34
|
+
</content>
|
|
35
|
+
<orderEntry type="jdk" jdkName="ruby-2.2.4-p230" jdkType="RUBY_SDK" />
|
|
36
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v4.2.6, ruby-2.2.4-p230) [gem]" level="application" />
|
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, ruby-2.2.4-p230) [gem]" level="application" />
|
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.7.0, ruby-2.2.4-p230) [gem]" level="application" />
|
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v1.8.3, ruby-2.2.4-p230) [gem]" level="application" />
|
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.9.0, ruby-2.2.4-p230) [gem]" level="application" />
|
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, ruby-2.2.4-p230) [gem]" level="application" />
|
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.4.0, ruby-2.2.4-p230) [gem]" level="application" />
|
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.4.4, ruby-2.2.4-p230) [gem]" level="application" />
|
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.4.0, ruby-2.2.4-p230) [gem]" level="application" />
|
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.4.1, ruby-2.2.4-p230) [gem]" level="application" />
|
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.4.1, ruby-2.2.4-p230) [gem]" level="application" />
|
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.5, ruby-2.2.4-p230) [gem]" level="application" />
|
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.2, ruby-2.2.4-p230) [gem]" level="application" />
|
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="unindent (v1.0, ruby-2.2.4-p230) [gem]" level="application" />
|
|
51
|
+
</component>
|
|
52
|
+
</module>
|
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,714 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="29e7d04d-6913-4c7a-8335-d749a6df3bef" name="Default" comment="">
|
|
5
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.gitignore" />
|
|
6
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/encodings.xml" />
|
|
7
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/misc.xml" />
|
|
8
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/modules.xml" />
|
|
9
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/trinamo.iml" />
|
|
10
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
|
11
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.rspec" />
|
|
12
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.travis.yml" />
|
|
13
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/CODE_OF_CONDUCT.md" />
|
|
14
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/Gemfile" />
|
|
15
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/LICENSE.txt" />
|
|
16
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/README.md" />
|
|
17
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/Rakefile" />
|
|
18
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/bin/console" />
|
|
19
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/bin/setup" />
|
|
20
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/trinamo.rb" />
|
|
21
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/trinamo/hive_type.rb" />
|
|
22
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/trinamo/version.rb" />
|
|
23
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/spec_helper.rb" />
|
|
24
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/trinamo_spec.rb" />
|
|
25
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/trinamo.gemspec" />
|
|
26
|
+
</list>
|
|
27
|
+
<ignored path="trinamo.iws" />
|
|
28
|
+
<ignored path=".idea/workspace.xml" />
|
|
29
|
+
<ignored path=".idea/dataSources.local.xml" />
|
|
30
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
31
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
32
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
33
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
34
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
35
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
36
|
+
</component>
|
|
37
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
38
|
+
<component name="CoverageDataManager">
|
|
39
|
+
<SUITE FILE_PATH="coverage/trinamo@test_rb.coverage" NAME="test.rb Coverage Results" MODIFIED="1465381477531" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="" MODULE_NAME="trinamo" />
|
|
40
|
+
</component>
|
|
41
|
+
<component name="CreatePatchCommitExecutor">
|
|
42
|
+
<option name="PATCH_PATH" value="" />
|
|
43
|
+
</component>
|
|
44
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
|
45
|
+
<component name="FavoritesManager">
|
|
46
|
+
<favorites_list name="trinamo" />
|
|
47
|
+
</component>
|
|
48
|
+
<component name="FileEditorManager">
|
|
49
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
50
|
+
<file leaf-file-name="trinamo.gemspec" pinned="false" current-in-tab="false">
|
|
51
|
+
<entry file="file://$PROJECT_DIR$/trinamo.gemspec">
|
|
52
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
53
|
+
<state relative-caret-position="0">
|
|
54
|
+
<caret line="0" column="15" selection-start-line="0" selection-start-column="15" selection-end-line="0" selection-end-column="15" />
|
|
55
|
+
<folding />
|
|
56
|
+
</state>
|
|
57
|
+
</provider>
|
|
58
|
+
</entry>
|
|
59
|
+
</file>
|
|
60
|
+
<file leaf-file-name="converter_spec.rb" pinned="false" current-in-tab="true">
|
|
61
|
+
<entry file="file://$PROJECT_DIR$/spec/trinamo/converter_spec.rb">
|
|
62
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
63
|
+
<state relative-caret-position="360">
|
|
64
|
+
<caret line="112" column="42" selection-start-line="112" selection-start-column="42" selection-end-line="112" selection-end-column="42" />
|
|
65
|
+
<folding />
|
|
66
|
+
</state>
|
|
67
|
+
</provider>
|
|
68
|
+
</entry>
|
|
69
|
+
</file>
|
|
70
|
+
<file leaf-file-name="converter.rb" pinned="false" current-in-tab="false">
|
|
71
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo/converter.rb">
|
|
72
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
73
|
+
<state relative-caret-position="649">
|
|
74
|
+
<caret line="82" column="42" selection-start-line="82" selection-start-column="42" selection-end-line="82" selection-end-column="42" />
|
|
75
|
+
<folding />
|
|
76
|
+
</state>
|
|
77
|
+
</provider>
|
|
78
|
+
</entry>
|
|
79
|
+
</file>
|
|
80
|
+
<file leaf-file-name="hive_type_spec.rb" pinned="false" current-in-tab="false">
|
|
81
|
+
<entry file="file://$PROJECT_DIR$/spec/trinamo/hive_type_spec.rb">
|
|
82
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
83
|
+
<state relative-caret-position="0">
|
|
84
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
85
|
+
<folding />
|
|
86
|
+
</state>
|
|
87
|
+
</provider>
|
|
88
|
+
</entry>
|
|
89
|
+
</file>
|
|
90
|
+
<file leaf-file-name="version_spec.rb" pinned="false" current-in-tab="false">
|
|
91
|
+
<entry file="file://$PROJECT_DIR$/spec/trinamo/version_spec.rb">
|
|
92
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
93
|
+
<state relative-caret-position="0">
|
|
94
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
95
|
+
<folding />
|
|
96
|
+
</state>
|
|
97
|
+
</provider>
|
|
98
|
+
</entry>
|
|
99
|
+
</file>
|
|
100
|
+
<file leaf-file-name="trinamo.rb" pinned="false" current-in-tab="false">
|
|
101
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo.rb">
|
|
102
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
103
|
+
<state relative-caret-position="102">
|
|
104
|
+
<caret line="6" column="0" selection-start-line="6" selection-start-column="0" selection-end-line="6" selection-end-column="0" />
|
|
105
|
+
<folding />
|
|
106
|
+
</state>
|
|
107
|
+
</provider>
|
|
108
|
+
</entry>
|
|
109
|
+
</file>
|
|
110
|
+
</leaf>
|
|
111
|
+
</component>
|
|
112
|
+
<component name="Git.Settings">
|
|
113
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
114
|
+
</component>
|
|
115
|
+
<component name="IdeDocumentHistory">
|
|
116
|
+
<option name="CHANGED_PATHS">
|
|
117
|
+
<list>
|
|
118
|
+
<option value="$PROJECT_DIR$/.gitignore" />
|
|
119
|
+
<option value="$PROJECT_DIR$/spec/trinamo_spec.rb" />
|
|
120
|
+
<option value="$PROJECT_DIR$/lib/trinamo/hash.rb" />
|
|
121
|
+
<option value="$PROJECT_DIR$/lib/trinamo/type.rb" />
|
|
122
|
+
<option value="$PROJECT_DIR$/lib/trinamo/hive_type.rb" />
|
|
123
|
+
<option value="$PROJECT_DIR$/trinamo.gemspec" />
|
|
124
|
+
<option value="$PROJECT_DIR$/test.yml" />
|
|
125
|
+
<option value="$PROJECT_DIR$/test.rb" />
|
|
126
|
+
<option value="$PROJECT_DIR$/lib/trinamo.rb" />
|
|
127
|
+
<option value="$PROJECT_DIR$/lib/trinamo/converter.rb" />
|
|
128
|
+
<option value="$PROJECT_DIR$/spec/trinamo/converter_spec.rb" />
|
|
129
|
+
</list>
|
|
130
|
+
</option>
|
|
131
|
+
</component>
|
|
132
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
|
133
|
+
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
|
134
|
+
<component name="JsGulpfileManager">
|
|
135
|
+
<detection-done>true</detection-done>
|
|
136
|
+
<sorting>DEFINITION_ORDER</sorting>
|
|
137
|
+
</component>
|
|
138
|
+
<component name="ProjectFrameBounds">
|
|
139
|
+
<option name="x" value="-8" />
|
|
140
|
+
<option name="y" value="-8" />
|
|
141
|
+
<option name="width" value="1936" />
|
|
142
|
+
<option name="height" value="1066" />
|
|
143
|
+
</component>
|
|
144
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
145
|
+
<OptionsSetting value="true" id="Add" />
|
|
146
|
+
<OptionsSetting value="true" id="Remove" />
|
|
147
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
148
|
+
<OptionsSetting value="true" id="Update" />
|
|
149
|
+
<OptionsSetting value="true" id="Status" />
|
|
150
|
+
<OptionsSetting value="true" id="Edit" />
|
|
151
|
+
<ConfirmationsSetting value="1" id="Add" />
|
|
152
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
153
|
+
</component>
|
|
154
|
+
<component name="ProjectView">
|
|
155
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
156
|
+
<flattenPackages />
|
|
157
|
+
<showMembers />
|
|
158
|
+
<showModules />
|
|
159
|
+
<showLibraryContents />
|
|
160
|
+
<hideEmptyPackages />
|
|
161
|
+
<abbreviatePackageNames />
|
|
162
|
+
<autoscrollToSource />
|
|
163
|
+
<autoscrollFromSource />
|
|
164
|
+
<sortByType />
|
|
165
|
+
<manualOrder />
|
|
166
|
+
<foldersAlwaysOnTop value="true" />
|
|
167
|
+
</navigator>
|
|
168
|
+
<panes>
|
|
169
|
+
<pane id="Scope" />
|
|
170
|
+
<pane id="ProjectPane">
|
|
171
|
+
<subPane>
|
|
172
|
+
<PATH>
|
|
173
|
+
<PATH_ELEMENT>
|
|
174
|
+
<option name="myItemId" value="trinamo" />
|
|
175
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
176
|
+
</PATH_ELEMENT>
|
|
177
|
+
</PATH>
|
|
178
|
+
<PATH>
|
|
179
|
+
<PATH_ELEMENT>
|
|
180
|
+
<option name="myItemId" value="trinamo" />
|
|
181
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
182
|
+
</PATH_ELEMENT>
|
|
183
|
+
<PATH_ELEMENT>
|
|
184
|
+
<option name="myItemId" value="trinamo" />
|
|
185
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
186
|
+
</PATH_ELEMENT>
|
|
187
|
+
</PATH>
|
|
188
|
+
<PATH>
|
|
189
|
+
<PATH_ELEMENT>
|
|
190
|
+
<option name="myItemId" value="trinamo" />
|
|
191
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
192
|
+
</PATH_ELEMENT>
|
|
193
|
+
<PATH_ELEMENT>
|
|
194
|
+
<option name="myItemId" value="trinamo" />
|
|
195
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
196
|
+
</PATH_ELEMENT>
|
|
197
|
+
<PATH_ELEMENT>
|
|
198
|
+
<option name="myItemId" value="spec" />
|
|
199
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
200
|
+
</PATH_ELEMENT>
|
|
201
|
+
</PATH>
|
|
202
|
+
<PATH>
|
|
203
|
+
<PATH_ELEMENT>
|
|
204
|
+
<option name="myItemId" value="trinamo" />
|
|
205
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
206
|
+
</PATH_ELEMENT>
|
|
207
|
+
<PATH_ELEMENT>
|
|
208
|
+
<option name="myItemId" value="trinamo" />
|
|
209
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
210
|
+
</PATH_ELEMENT>
|
|
211
|
+
<PATH_ELEMENT>
|
|
212
|
+
<option name="myItemId" value="spec" />
|
|
213
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
214
|
+
</PATH_ELEMENT>
|
|
215
|
+
<PATH_ELEMENT>
|
|
216
|
+
<option name="myItemId" value="trinamo" />
|
|
217
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
218
|
+
</PATH_ELEMENT>
|
|
219
|
+
</PATH>
|
|
220
|
+
<PATH>
|
|
221
|
+
<PATH_ELEMENT>
|
|
222
|
+
<option name="myItemId" value="trinamo" />
|
|
223
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
224
|
+
</PATH_ELEMENT>
|
|
225
|
+
<PATH_ELEMENT>
|
|
226
|
+
<option name="myItemId" value="trinamo" />
|
|
227
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
228
|
+
</PATH_ELEMENT>
|
|
229
|
+
<PATH_ELEMENT>
|
|
230
|
+
<option name="myItemId" value="lib" />
|
|
231
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
232
|
+
</PATH_ELEMENT>
|
|
233
|
+
</PATH>
|
|
234
|
+
<PATH>
|
|
235
|
+
<PATH_ELEMENT>
|
|
236
|
+
<option name="myItemId" value="trinamo" />
|
|
237
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
238
|
+
</PATH_ELEMENT>
|
|
239
|
+
<PATH_ELEMENT>
|
|
240
|
+
<option name="myItemId" value="trinamo" />
|
|
241
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
242
|
+
</PATH_ELEMENT>
|
|
243
|
+
<PATH_ELEMENT>
|
|
244
|
+
<option name="myItemId" value="lib" />
|
|
245
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
246
|
+
</PATH_ELEMENT>
|
|
247
|
+
<PATH_ELEMENT>
|
|
248
|
+
<option name="myItemId" value="trinamo" />
|
|
249
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
250
|
+
</PATH_ELEMENT>
|
|
251
|
+
</PATH>
|
|
252
|
+
</subPane>
|
|
253
|
+
</pane>
|
|
254
|
+
<pane id="Scratches" />
|
|
255
|
+
</panes>
|
|
256
|
+
</component>
|
|
257
|
+
<component name="PropertiesComponent">
|
|
258
|
+
<property name="settings.editor.selected.configurable" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
|
259
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
|
260
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
261
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$/../cradle" />
|
|
262
|
+
<property name="js-jscs-nodeInterpreter" value="C:\Program Files\nodejs\node.exe" />
|
|
263
|
+
</component>
|
|
264
|
+
<component name="RunManager" selected="Ruby.test.rb">
|
|
265
|
+
<configuration default="true" type="BashConfigurationType" factoryName="Bash">
|
|
266
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
|
267
|
+
<option name="INTERPRETER_PATH" value="C:\Program Files (x86)\Gow\bin\bash.exe" />
|
|
268
|
+
<option name="WORKING_DIRECTORY" value="" />
|
|
269
|
+
<option name="PARENT_ENVS" value="true" />
|
|
270
|
+
<option name="SCRIPT_NAME" value="" />
|
|
271
|
+
<option name="PARAMETERS" value="" />
|
|
272
|
+
<module name="" />
|
|
273
|
+
<envs />
|
|
274
|
+
<method />
|
|
275
|
+
</configuration>
|
|
276
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
|
277
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
|
278
|
+
<module name="" />
|
|
279
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
280
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
281
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
282
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
283
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
284
|
+
<envs />
|
|
285
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
286
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
287
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
|
288
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
|
289
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
290
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
291
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
292
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
|
293
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
|
294
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
|
295
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
296
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
297
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
|
298
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
299
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
300
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
301
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
|
302
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
|
303
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
|
304
|
+
<method />
|
|
305
|
+
</configuration>
|
|
306
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
|
307
|
+
<method />
|
|
308
|
+
</configuration>
|
|
309
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
|
310
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
|
311
|
+
<module name="" />
|
|
312
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
313
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
314
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
315
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
316
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
317
|
+
<envs />
|
|
318
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
319
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
320
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
|
321
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
322
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
323
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
|
324
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
|
325
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
|
326
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
327
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
|
328
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
329
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
|
330
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
331
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
332
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
333
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
334
|
+
<method />
|
|
335
|
+
</configuration>
|
|
336
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
|
337
|
+
<module name="trinamo" />
|
|
338
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
339
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
|
340
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
341
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
342
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
|
343
|
+
<envs />
|
|
344
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
|
345
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
346
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
|
347
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/test.rb" />
|
|
348
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
349
|
+
<method />
|
|
350
|
+
</configuration>
|
|
351
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
|
352
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
|
353
|
+
<module name="" />
|
|
354
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
355
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
356
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
357
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
358
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
359
|
+
<envs />
|
|
360
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
361
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
362
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
|
363
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
364
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
365
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
|
366
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
|
367
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
368
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
369
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
370
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
371
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
|
372
|
+
<method />
|
|
373
|
+
</configuration>
|
|
374
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
|
375
|
+
<node-interpreter>project</node-interpreter>
|
|
376
|
+
<node-options />
|
|
377
|
+
<gulpfile />
|
|
378
|
+
<tasks />
|
|
379
|
+
<arguments />
|
|
380
|
+
<envs />
|
|
381
|
+
<method />
|
|
382
|
+
</configuration>
|
|
383
|
+
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
|
384
|
+
<command value="run-script" />
|
|
385
|
+
<scripts />
|
|
386
|
+
<node-interpreter value="project" />
|
|
387
|
+
<envs />
|
|
388
|
+
<method />
|
|
389
|
+
</configuration>
|
|
390
|
+
<list size="1">
|
|
391
|
+
<item index="0" class="java.lang.String" itemvalue="Ruby.test.rb" />
|
|
392
|
+
</list>
|
|
393
|
+
</component>
|
|
394
|
+
<component name="ShelveChangesManager" show_recycled="false">
|
|
395
|
+
<option name="remove_strategy" value="false" />
|
|
396
|
+
</component>
|
|
397
|
+
<component name="SvnConfiguration">
|
|
398
|
+
<configuration />
|
|
399
|
+
</component>
|
|
400
|
+
<component name="TaskManager">
|
|
401
|
+
<task active="true" id="Default" summary="Default task">
|
|
402
|
+
<changelist id="29e7d04d-6913-4c7a-8335-d749a6df3bef" name="Default" comment="" />
|
|
403
|
+
<created>1465350459410</created>
|
|
404
|
+
<option name="number" value="Default" />
|
|
405
|
+
<option name="presentableId" value="Default" />
|
|
406
|
+
<updated>1465350459410</updated>
|
|
407
|
+
<workItem from="1465350461236" duration="2647000" />
|
|
408
|
+
<workItem from="1465353121525" duration="19502000" />
|
|
409
|
+
</task>
|
|
410
|
+
<servers />
|
|
411
|
+
</component>
|
|
412
|
+
<component name="TimeTrackingManager">
|
|
413
|
+
<option name="totallyTimeSpent" value="22149000" />
|
|
414
|
+
</component>
|
|
415
|
+
<component name="ToolWindowManager">
|
|
416
|
+
<frame x="-8" y="-8" width="1936" height="1066" extended-state="6" />
|
|
417
|
+
<editor active="true" />
|
|
418
|
+
<layout>
|
|
419
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.19116081" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
420
|
+
<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" />
|
|
421
|
+
<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" />
|
|
422
|
+
<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" />
|
|
423
|
+
<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" />
|
|
424
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.3295099" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
425
|
+
<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" />
|
|
426
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3295099" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
427
|
+
<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" />
|
|
428
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.39937434" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
429
|
+
<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" />
|
|
430
|
+
<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" />
|
|
431
|
+
<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" />
|
|
432
|
+
<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" />
|
|
433
|
+
<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" />
|
|
434
|
+
<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" />
|
|
435
|
+
<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" />
|
|
436
|
+
</layout>
|
|
437
|
+
</component>
|
|
438
|
+
<component name="Vcs.Log.UiProperties">
|
|
439
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
|
440
|
+
<collection />
|
|
441
|
+
</option>
|
|
442
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
|
443
|
+
<collection />
|
|
444
|
+
</option>
|
|
445
|
+
</component>
|
|
446
|
+
<component name="VcsContentAnnotationSettings">
|
|
447
|
+
<option name="myLimit" value="2678400000" />
|
|
448
|
+
</component>
|
|
449
|
+
<component name="XDebuggerManager">
|
|
450
|
+
<breakpoint-manager />
|
|
451
|
+
<watches-manager />
|
|
452
|
+
</component>
|
|
453
|
+
<component name="editorHistoryManager">
|
|
454
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
455
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
456
|
+
<state relative-caret-position="0">
|
|
457
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
458
|
+
<folding />
|
|
459
|
+
</state>
|
|
460
|
+
</provider>
|
|
461
|
+
</entry>
|
|
462
|
+
<entry file="file://$PROJECT_DIR$/trinamo.gemspec">
|
|
463
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
464
|
+
<state relative-caret-position="425">
|
|
465
|
+
<caret line="25" column="0" selection-start-line="25" selection-start-column="0" selection-end-line="25" selection-end-column="0" />
|
|
466
|
+
<folding />
|
|
467
|
+
</state>
|
|
468
|
+
</provider>
|
|
469
|
+
</entry>
|
|
470
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
|
471
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
472
|
+
<state relative-caret-position="306">
|
|
473
|
+
<caret line="18" column="6" selection-start-line="18" selection-start-column="6" selection-end-line="18" selection-end-column="6" />
|
|
474
|
+
<folding />
|
|
475
|
+
</state>
|
|
476
|
+
</provider>
|
|
477
|
+
</entry>
|
|
478
|
+
<entry file="file://$PROJECT_DIR$/spec/trinamo_spec.rb">
|
|
479
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
480
|
+
<state relative-caret-position="119">
|
|
481
|
+
<caret line="7" column="3" selection-start-line="7" selection-start-column="3" selection-end-line="7" selection-end-column="3" />
|
|
482
|
+
<folding />
|
|
483
|
+
</state>
|
|
484
|
+
</provider>
|
|
485
|
+
</entry>
|
|
486
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
|
487
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
488
|
+
<state relative-caret-position="0">
|
|
489
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
490
|
+
<folding />
|
|
491
|
+
</state>
|
|
492
|
+
</provider>
|
|
493
|
+
</entry>
|
|
494
|
+
<entry file="file://$PROJECT_DIR$/test.yml">
|
|
495
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
496
|
+
<state relative-caret-position="170">
|
|
497
|
+
<caret line="10" column="20" selection-start-line="10" selection-start-column="20" selection-end-line="10" selection-end-column="20" />
|
|
498
|
+
<folding />
|
|
499
|
+
</state>
|
|
500
|
+
</provider>
|
|
501
|
+
</entry>
|
|
502
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo/converter.rb">
|
|
503
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
504
|
+
<state relative-caret-position="34">
|
|
505
|
+
<caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="2" selection-end-column="0" />
|
|
506
|
+
<folding />
|
|
507
|
+
</state>
|
|
508
|
+
</provider>
|
|
509
|
+
</entry>
|
|
510
|
+
<entry file="file://$PROJECT_DIR$/test.rb">
|
|
511
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
512
|
+
<state relative-caret-position="0">
|
|
513
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
514
|
+
<folding />
|
|
515
|
+
</state>
|
|
516
|
+
</provider>
|
|
517
|
+
</entry>
|
|
518
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo.rb">
|
|
519
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
520
|
+
<state relative-caret-position="34">
|
|
521
|
+
<caret line="2" column="14" selection-start-line="2" selection-start-column="14" selection-end-line="2" selection-end-column="14" />
|
|
522
|
+
<folding />
|
|
523
|
+
</state>
|
|
524
|
+
</provider>
|
|
525
|
+
</entry>
|
|
526
|
+
<entry file="file://$PROJECT_DIR$/bin/setup">
|
|
527
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
528
|
+
<state relative-caret-position="136">
|
|
529
|
+
<caret line="8" column="0" selection-start-line="8" selection-start-column="0" selection-end-line="8" selection-end-column="0" />
|
|
530
|
+
</state>
|
|
531
|
+
</provider>
|
|
532
|
+
</entry>
|
|
533
|
+
<entry file="file://$PROJECT_DIR$/bin/console">
|
|
534
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
535
|
+
<state relative-caret-position="238">
|
|
536
|
+
<caret line="14" column="0" selection-start-line="14" selection-start-column="0" selection-end-line="14" selection-end-column="0" />
|
|
537
|
+
</state>
|
|
538
|
+
</provider>
|
|
539
|
+
</entry>
|
|
540
|
+
<entry file="file://$PROJECT_DIR$/LICENSE.txt">
|
|
541
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
542
|
+
<state relative-caret-position="0">
|
|
543
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
544
|
+
</state>
|
|
545
|
+
</provider>
|
|
546
|
+
</entry>
|
|
547
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
|
548
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
549
|
+
<state relative-caret-position="0">
|
|
550
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
551
|
+
</state>
|
|
552
|
+
</provider>
|
|
553
|
+
</entry>
|
|
554
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo/hash.rb" />
|
|
555
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
|
556
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
557
|
+
<state relative-caret-position="306">
|
|
558
|
+
<caret line="18" column="6" selection-start-line="18" selection-start-column="6" selection-end-line="18" selection-end-column="6" />
|
|
559
|
+
<folding />
|
|
560
|
+
</state>
|
|
561
|
+
</provider>
|
|
562
|
+
</entry>
|
|
563
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
564
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
565
|
+
<state relative-caret-position="0">
|
|
566
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
567
|
+
<folding />
|
|
568
|
+
</state>
|
|
569
|
+
</provider>
|
|
570
|
+
</entry>
|
|
571
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo/hive_type.rb">
|
|
572
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
573
|
+
<state relative-caret-position="204">
|
|
574
|
+
<caret line="12" column="0" selection-start-line="12" selection-start-column="0" selection-end-line="12" selection-end-column="0" />
|
|
575
|
+
<folding />
|
|
576
|
+
</state>
|
|
577
|
+
</provider>
|
|
578
|
+
</entry>
|
|
579
|
+
<entry file="file://$PROJECT_DIR$/CODE_OF_CONDUCT.md">
|
|
580
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
581
|
+
<state relative-caret-position="0">
|
|
582
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
583
|
+
<folding />
|
|
584
|
+
</state>
|
|
585
|
+
</provider>
|
|
586
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
|
587
|
+
<state />
|
|
588
|
+
</provider>
|
|
589
|
+
</entry>
|
|
590
|
+
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
|
591
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
592
|
+
<state relative-caret-position="0">
|
|
593
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
594
|
+
<folding />
|
|
595
|
+
</state>
|
|
596
|
+
</provider>
|
|
597
|
+
</entry>
|
|
598
|
+
<entry file="file://$PROJECT_DIR$/spec/trinamo_spec.rb">
|
|
599
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
600
|
+
<state relative-caret-position="136">
|
|
601
|
+
<caret line="8" column="0" selection-start-line="8" selection-start-column="0" selection-end-line="8" selection-end-column="0" />
|
|
602
|
+
<folding />
|
|
603
|
+
</state>
|
|
604
|
+
</provider>
|
|
605
|
+
</entry>
|
|
606
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
|
607
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
608
|
+
<state relative-caret-position="0">
|
|
609
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
610
|
+
<folding />
|
|
611
|
+
</state>
|
|
612
|
+
</provider>
|
|
613
|
+
</entry>
|
|
614
|
+
<entry file="file://$PROJECT_DIR$/.rspec">
|
|
615
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
616
|
+
<state relative-caret-position="0">
|
|
617
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
618
|
+
<folding />
|
|
619
|
+
</state>
|
|
620
|
+
</provider>
|
|
621
|
+
</entry>
|
|
622
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo/version.rb">
|
|
623
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
624
|
+
<state relative-caret-position="0">
|
|
625
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
626
|
+
<folding />
|
|
627
|
+
</state>
|
|
628
|
+
</provider>
|
|
629
|
+
</entry>
|
|
630
|
+
<entry file="file://$PROJECT_DIR$/spec/trinamo/hive_type_spec.rb">
|
|
631
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
632
|
+
<state relative-caret-position="0">
|
|
633
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
634
|
+
<folding />
|
|
635
|
+
</state>
|
|
636
|
+
</provider>
|
|
637
|
+
</entry>
|
|
638
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo.rb">
|
|
639
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
640
|
+
<state relative-caret-position="102">
|
|
641
|
+
<caret line="6" column="0" selection-start-line="6" selection-start-column="0" selection-end-line="6" selection-end-column="0" />
|
|
642
|
+
<folding />
|
|
643
|
+
</state>
|
|
644
|
+
</provider>
|
|
645
|
+
</entry>
|
|
646
|
+
<entry file="file://$PROJECT_DIR$/trinamo.gemspec">
|
|
647
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
648
|
+
<state relative-caret-position="0">
|
|
649
|
+
<caret line="0" column="15" selection-start-line="0" selection-start-column="15" selection-end-line="0" selection-end-column="15" />
|
|
650
|
+
<folding />
|
|
651
|
+
</state>
|
|
652
|
+
</provider>
|
|
653
|
+
</entry>
|
|
654
|
+
<entry file="file://$PROJECT_DIR$/test.yml">
|
|
655
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
656
|
+
<state relative-caret-position="442">
|
|
657
|
+
<caret line="26" column="0" selection-start-line="26" selection-start-column="0" selection-end-line="26" selection-end-column="0" />
|
|
658
|
+
<folding />
|
|
659
|
+
</state>
|
|
660
|
+
</provider>
|
|
661
|
+
</entry>
|
|
662
|
+
<entry file="file://$PROJECT_DIR$/test.rb">
|
|
663
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
664
|
+
<state relative-caret-position="153">
|
|
665
|
+
<caret line="9" column="0" selection-start-line="9" selection-start-column="0" selection-end-line="9" selection-end-column="0" />
|
|
666
|
+
<folding />
|
|
667
|
+
</state>
|
|
668
|
+
</provider>
|
|
669
|
+
</entry>
|
|
670
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
671
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
672
|
+
<state relative-caret-position="0">
|
|
673
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
674
|
+
<folding />
|
|
675
|
+
</state>
|
|
676
|
+
</provider>
|
|
677
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
|
678
|
+
<state />
|
|
679
|
+
</provider>
|
|
680
|
+
</entry>
|
|
681
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
682
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
683
|
+
<state relative-caret-position="0">
|
|
684
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
685
|
+
<folding />
|
|
686
|
+
</state>
|
|
687
|
+
</provider>
|
|
688
|
+
</entry>
|
|
689
|
+
<entry file="file://$PROJECT_DIR$/spec/trinamo/version_spec.rb">
|
|
690
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
691
|
+
<state relative-caret-position="0">
|
|
692
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
693
|
+
<folding />
|
|
694
|
+
</state>
|
|
695
|
+
</provider>
|
|
696
|
+
</entry>
|
|
697
|
+
<entry file="file://$PROJECT_DIR$/lib/trinamo/converter.rb">
|
|
698
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
699
|
+
<state relative-caret-position="649">
|
|
700
|
+
<caret line="82" column="42" selection-start-line="82" selection-start-column="42" selection-end-line="82" selection-end-column="42" />
|
|
701
|
+
<folding />
|
|
702
|
+
</state>
|
|
703
|
+
</provider>
|
|
704
|
+
</entry>
|
|
705
|
+
<entry file="file://$PROJECT_DIR$/spec/trinamo/converter_spec.rb">
|
|
706
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
707
|
+
<state relative-caret-position="360">
|
|
708
|
+
<caret line="112" column="42" selection-start-line="112" selection-start-column="42" selection-end-line="112" selection-end-column="42" />
|
|
709
|
+
<folding />
|
|
710
|
+
</state>
|
|
711
|
+
</provider>
|
|
712
|
+
</entry>
|
|
713
|
+
</component>
|
|
714
|
+
</project>
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Contributor Code of Conduct
|
|
2
|
+
|
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
|
7
|
+
|
|
8
|
+
We are committed to making participation in this project a harassment-free
|
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
|
12
|
+
|
|
13
|
+
Examples of unacceptable behavior by participants include:
|
|
14
|
+
|
|
15
|
+
* The use of sexualized language or imagery
|
|
16
|
+
* Personal attacks
|
|
17
|
+
* Trolling or insulting/derogatory comments
|
|
18
|
+
* Public or private harassment
|
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
|
20
|
+
addresses, without explicit permission
|
|
21
|
+
* Other unethical or unprofessional conduct
|
|
22
|
+
|
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
27
|
+
threatening, offensive, or harmful.
|
|
28
|
+
|
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
|
32
|
+
Conduct may be permanently removed from the project team.
|
|
33
|
+
|
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
|
35
|
+
when an individual is representing the project or its community.
|
|
36
|
+
|
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
38
|
+
reported by contacting a project maintainer at cignoir@gmail.com. All
|
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
|
42
|
+
incident.
|
|
43
|
+
|
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
45
|
+
version 1.3.0, available at
|
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
|
47
|
+
|
|
48
|
+
[homepage]: http://contributor-covenant.org
|
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 cignoir
|
|
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.
|
data/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Trinamo
|
|
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/trinamo`. 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 'trinamo'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install trinamo
|
|
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 `rake spec` to run the tests. You can also 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`, which will 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
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/trinamo. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "trinamo"
|
|
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
data/lib/trinamo.rb
ADDED
data/trinamo.gemspec
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'trinamo/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "trinamo"
|
|
8
|
+
spec.version = Trinamo::VERSION
|
|
9
|
+
spec.authors = ["cignoir"]
|
|
10
|
+
spec.email = ["cignoir@gmail.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{utilities for aws-dynamodb}
|
|
13
|
+
spec.description = %q{}
|
|
14
|
+
spec.homepage = "https://github.com/cignoir/trinamo"
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
|
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
|
+
spec.bindir = "exe"
|
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
|
+
spec.require_paths = ["lib"]
|
|
21
|
+
|
|
22
|
+
spec.add_dependency "activesupport"
|
|
23
|
+
spec.add_dependency "unindent"
|
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
26
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
27
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: trinamo
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- cignoir
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-06-08 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: activesupport
|
|
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: unindent
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: bundler
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.11'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.11'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rake
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '10.0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '10.0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rspec
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '3.0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '3.0'
|
|
83
|
+
description: ''
|
|
84
|
+
email:
|
|
85
|
+
- cignoir@gmail.com
|
|
86
|
+
executables: []
|
|
87
|
+
extensions: []
|
|
88
|
+
extra_rdoc_files: []
|
|
89
|
+
files:
|
|
90
|
+
- ".gitignore"
|
|
91
|
+
- ".idea/encodings.xml"
|
|
92
|
+
- ".idea/misc.xml"
|
|
93
|
+
- ".idea/modules.xml"
|
|
94
|
+
- ".idea/trinamo.iml"
|
|
95
|
+
- ".idea/workspace.xml"
|
|
96
|
+
- ".rspec"
|
|
97
|
+
- ".travis.yml"
|
|
98
|
+
- CODE_OF_CONDUCT.md
|
|
99
|
+
- Gemfile
|
|
100
|
+
- LICENSE.txt
|
|
101
|
+
- README.md
|
|
102
|
+
- Rakefile
|
|
103
|
+
- bin/console
|
|
104
|
+
- bin/setup
|
|
105
|
+
- lib/trinamo.rb
|
|
106
|
+
- lib/trinamo/hive_type.rb
|
|
107
|
+
- lib/trinamo/version.rb
|
|
108
|
+
- trinamo.gemspec
|
|
109
|
+
homepage: https://github.com/cignoir/trinamo
|
|
110
|
+
licenses:
|
|
111
|
+
- MIT
|
|
112
|
+
metadata: {}
|
|
113
|
+
post_install_message:
|
|
114
|
+
rdoc_options: []
|
|
115
|
+
require_paths:
|
|
116
|
+
- lib
|
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
118
|
+
requirements:
|
|
119
|
+
- - ">="
|
|
120
|
+
- !ruby/object:Gem::Version
|
|
121
|
+
version: '0'
|
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
|
+
requirements:
|
|
124
|
+
- - ">="
|
|
125
|
+
- !ruby/object:Gem::Version
|
|
126
|
+
version: '0'
|
|
127
|
+
requirements: []
|
|
128
|
+
rubyforge_project:
|
|
129
|
+
rubygems_version: 2.4.5.1
|
|
130
|
+
signing_key:
|
|
131
|
+
specification_version: 4
|
|
132
|
+
summary: utilities for aws-dynamodb
|
|
133
|
+
test_files: []
|