stash-sword 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +181 -28
- data/README.md +4 -0
- data/lib/stash/sword/http_helper.rb +1 -1
- data/lib/stash/sword/module_info.rb +1 -1
- data/spec/.rubocop.yml +3 -0
- data/stash-sword.gemspec +1 -1
- data/stash-sword.iml +59 -0
- data/stash-sword.ipr +203 -0
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 322063be9f694a3a94ab3580228e0c328f16552b
|
4
|
+
data.tar.gz: a829b77b71b1aa97d2b263480ed028c6185a4af8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd46240eaa590e3547e2d4dba455bcea72ca3487de3850db6960e182c2313a1fbdb894a3cdf3fad35d6b3a6a81d3403e8c5f825df4e6477ae3515dc99bbefae9
|
7
|
+
data.tar.gz: bb95096c44eefc57fffd74435b5fcd15f59f6069e5fef8f2a2802dcc9ab4b1d1c5bb0806633b9663d1e748627a36b5cdcc07adbb6c5a1576601e5d62ffa95eb5
|
data/.gitignore
CHANGED
@@ -1,45 +1,198 @@
|
|
1
|
-
|
1
|
+
#### Misc
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
/
|
3
|
+
Gemfile.lock
|
4
|
+
.rubocop_todo.yml
|
5
|
+
|
6
|
+
#### joe made this: http://goel.io/joe
|
7
|
+
|
8
|
+
#### ruby ####
|
9
|
+
*.gem
|
10
|
+
*.rbc
|
11
|
+
/.config
|
7
12
|
/coverage/
|
8
|
-
/
|
13
|
+
/InstalledFiles
|
9
14
|
/pkg/
|
10
15
|
/spec/reports/
|
16
|
+
/spec/examples.txt
|
17
|
+
/test/tmp/
|
18
|
+
/test/version_tmp/
|
11
19
|
/tmp/
|
12
|
-
*.bundle
|
13
|
-
*.so
|
14
|
-
*.o
|
15
|
-
*.a
|
16
|
-
mkmf.log
|
17
20
|
|
18
|
-
|
21
|
+
# Used by dotenv library to load environment variables.
|
22
|
+
# .env
|
19
23
|
|
20
|
-
|
24
|
+
## Specific to RubyMotion:
|
25
|
+
.dat*
|
26
|
+
.repl_history
|
27
|
+
build/
|
28
|
+
*.bridgesupport
|
29
|
+
build-iPhoneOS/
|
30
|
+
build-iPhoneSimulator/
|
21
31
|
|
22
|
-
|
32
|
+
## Specific to RubyMotion (use of CocoaPods):
|
33
|
+
#
|
34
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
35
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
36
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
37
|
+
#
|
38
|
+
# vendor/Pods/
|
23
39
|
|
24
|
-
|
40
|
+
## Documentation cache and generated files:
|
41
|
+
/.yardoc/
|
42
|
+
/_yardoc/
|
43
|
+
/doc/
|
44
|
+
/rdoc/
|
25
45
|
|
26
|
-
|
46
|
+
## Environment normalization:
|
47
|
+
/.bundle/
|
48
|
+
/vendor/bundle
|
49
|
+
/lib/bundler/man/
|
27
50
|
|
28
|
-
#
|
51
|
+
# for a library or gem, you might want to ignore these files since the code is
|
52
|
+
# intended to run in multiple environments; otherwise, check them in:
|
53
|
+
# Gemfile.lock
|
54
|
+
# .ruby-version
|
55
|
+
# .ruby-gemset
|
29
56
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
57
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
58
|
+
.rvmrc
|
59
|
+
|
60
|
+
#### rails ####
|
61
|
+
*.rbc
|
62
|
+
capybara-*.html
|
63
|
+
.rspec
|
64
|
+
/log
|
65
|
+
/tmp
|
66
|
+
/db/*.sqlite3
|
67
|
+
/db/*.sqlite3-journal
|
68
|
+
/public/system
|
69
|
+
/coverage/
|
70
|
+
/spec/tmp
|
71
|
+
**.orig
|
72
|
+
rerun.txt
|
73
|
+
pickle-email-*.html
|
74
|
+
|
75
|
+
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
76
|
+
config/initializers/secret_token.rb
|
77
|
+
|
78
|
+
# Only include if you have production secrets in this file, which is no longer a Rails default
|
79
|
+
# config/secrets.yml
|
80
|
+
|
81
|
+
# dotenv
|
82
|
+
# TODO Comment out this rule if environment variables can be committed
|
83
|
+
.env
|
84
|
+
|
85
|
+
## Environment normalization:
|
86
|
+
/.bundle
|
87
|
+
/vendor/bundle
|
88
|
+
|
89
|
+
# these should all be checked in to normalize the environment:
|
90
|
+
# Gemfile.lock, .ruby-version, .ruby-gemset
|
36
91
|
|
37
|
-
#
|
92
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
93
|
+
.rvmrc
|
38
94
|
|
95
|
+
# if using bower-rails ignore default bower_components path bower.json files
|
96
|
+
/vendor/assets/bower_components
|
97
|
+
*.bowerrc
|
98
|
+
bower.json
|
99
|
+
|
100
|
+
# Ignore pow environment settings
|
101
|
+
.powenv
|
102
|
+
|
103
|
+
# Ignore Byebug command history file.
|
104
|
+
.byebug_history
|
105
|
+
|
106
|
+
#### emacs ####
|
107
|
+
# -*- mode: gitignore; -*-
|
39
108
|
*~
|
40
|
-
|
41
|
-
|
109
|
+
\#*\#
|
110
|
+
/.emacs.desktop
|
111
|
+
/.emacs.desktop.lock
|
112
|
+
*.elc
|
113
|
+
auto-save-list
|
114
|
+
tramp
|
115
|
+
.\#*
|
116
|
+
|
117
|
+
# Org-mode
|
118
|
+
.org-id-locations
|
119
|
+
*_archive
|
120
|
+
|
121
|
+
# flymake-mode
|
122
|
+
*_flymake.*
|
42
123
|
|
43
|
-
#
|
124
|
+
# eshell files
|
125
|
+
/eshell/history
|
126
|
+
/eshell/lastdir
|
127
|
+
|
128
|
+
# elpa packages
|
129
|
+
/elpa/
|
130
|
+
|
131
|
+
# reftex files
|
132
|
+
*.rel
|
133
|
+
|
134
|
+
# AUCTeX auto folder
|
135
|
+
/auto/
|
136
|
+
|
137
|
+
# cask packages
|
138
|
+
.cask/
|
139
|
+
dist/
|
140
|
+
|
141
|
+
# Flycheck
|
142
|
+
flycheck_*.el
|
143
|
+
|
144
|
+
# server auth directory
|
145
|
+
/server/
|
146
|
+
|
147
|
+
# projectiles files
|
148
|
+
.projectile
|
149
|
+
|
150
|
+
#### jetbrains ####
|
151
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
152
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
153
|
+
|
154
|
+
# User-specific stuff:
|
155
|
+
.idea/workspace.xml
|
156
|
+
.idea/tasks.xml
|
157
|
+
.idea/dictionaries
|
158
|
+
.idea/vcs.xml
|
159
|
+
.idea/jsLibraryMappings.xml
|
160
|
+
|
161
|
+
# Sensitive or high-churn files:
|
162
|
+
.idea/dataSources.ids
|
163
|
+
.idea/dataSources.xml
|
164
|
+
.idea/dataSources.local.xml
|
165
|
+
.idea/sqlDataSources.xml
|
166
|
+
.idea/dynamic.xml
|
167
|
+
.idea/uiDesigner.xml
|
168
|
+
|
169
|
+
# Gradle:
|
170
|
+
.idea/gradle.xml
|
171
|
+
.idea/libraries
|
172
|
+
|
173
|
+
# Mongo Explorer plugin:
|
174
|
+
.idea/mongoSettings.xml
|
175
|
+
|
176
|
+
## File-based project format:
|
177
|
+
*.iws
|
178
|
+
|
179
|
+
## Plugin-specific files:
|
180
|
+
|
181
|
+
# IntelliJ
|
182
|
+
/out/
|
183
|
+
|
184
|
+
# mpeltonen/sbt-idea plugin
|
185
|
+
.idea_modules/
|
186
|
+
|
187
|
+
# JIRA plugin
|
188
|
+
atlassian-ide-plugin.xml
|
189
|
+
|
190
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
191
|
+
com_crashlytics_export_strings.xml
|
192
|
+
crashlytics.properties
|
193
|
+
crashlytics-build.properties
|
194
|
+
fabric.properties
|
195
|
+
|
196
|
+
# Raketasks
|
197
|
+
.rakeTasks
|
44
198
|
|
45
|
-
.DS_Store
|
data/README.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
1
|
# stash-sword
|
2
2
|
|
3
|
+
[![Build Status](https://travis-ci.org/CDLUC3/stash-sword.svg?branch=master)](https://travis-ci.org/CDLUC3/stash-sword)
|
4
|
+
[![Code Climate](https://codeclimate.com/github/CDLUC3/stash-sword.svg)](https://codeclimate.com/github/CDLUC3/stash-sword)
|
5
|
+
[![Inline docs](http://inch-ci.org/github/CDLUC3/stash-sword.svg)](http://inch-ci.org/github/CDLUC3/stash-sword)
|
6
|
+
|
3
7
|
A minimal SWORD 2.0 connector providing those features needed for Stash.
|
4
8
|
|
@@ -14,7 +14,7 @@ module Stash
|
|
14
14
|
DEFAULT_MAX_REDIRECTS = 5
|
15
15
|
|
16
16
|
# The default number of seconds to allow before timing out. Defaults to 10 minutes.
|
17
|
-
DEFAULT_TIMEOUT = 60 *
|
17
|
+
DEFAULT_TIMEOUT = 60 * 60
|
18
18
|
|
19
19
|
# @return [String] the User-Agent string to send when making requests
|
20
20
|
attr_accessor :user_agent
|
data/spec/.rubocop.yml
CHANGED
data/stash-sword.gemspec
CHANGED
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
35
35
|
spec.add_development_dependency 'rspec', '~> 3.3'
|
36
36
|
spec.add_development_dependency 'simplecov', '~> 0.9.2'
|
37
37
|
spec.add_development_dependency 'simplecov-console', '~> 0.2.0'
|
38
|
-
spec.add_development_dependency 'rubocop', '~> 0.
|
38
|
+
spec.add_development_dependency 'rubocop', '~> 0.47'
|
39
39
|
spec.add_development_dependency 'webmock', '~> 1.24'
|
40
40
|
spec.add_development_dependency 'yard', '~> 0.8'
|
41
41
|
end
|
data/stash-sword.iml
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
4
|
+
<exclude-output />
|
5
|
+
<content url="file://$MODULE_DIR$">
|
6
|
+
<sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
|
7
|
+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
8
|
+
<sourceFolder url="file://$MODULE_DIR$/bin" isTestSource="false" />
|
9
|
+
</content>
|
10
|
+
<orderEntry type="jdk" jdkName="ruby-2.2.5-p319" jdkType="RUBY_SDK" />
|
11
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
12
|
+
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.5.0, ruby-2.2.5-p319) [gem]" level="application" />
|
13
|
+
<orderEntry type="library" scope="PROVIDED" name="ast (v2.3.0, ruby-2.2.5-p319) [gem]" level="application" />
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.13.7, ruby-2.2.5-p319) [gem]" level="application" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="colorize (v0.8.1, ruby-2.2.5-p319) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="crack (v0.4.3, ruby-2.2.5-p319) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, ruby-2.2.5-p319) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="docile (v1.1.5, ruby-2.2.5-p319) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="domain_name (v0.5.20161021, ruby-2.2.5-p319) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="equivalent-xml (v0.6.0, ruby-2.2.5-p319) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="hashdiff (v0.3.0, ruby-2.2.5-p319) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="hirb (v0.7.3, ruby-2.2.5-p319) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="http-cookie (v1.0.3, ruby-2.2.5-p319) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="mime-types (v2.99.3, ruby-2.2.5-p319) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="mini_portile2 (v2.1.0, ruby-2.2.5-p319) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.12.1, ruby-2.2.5-p319) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="netrc (v0.11.0, ruby-2.2.5-p319) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.6.8.1, ruby-2.2.5-p319) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="parser (v2.4.0.0, ruby-2.2.5-p319) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="powerpack (v0.1.1, ruby-2.2.5-p319) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="public_suffix (v2.0.4, ruby-2.2.5-p319) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="rainbow (v2.2.1, ruby-2.2.5-p319) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, ruby-2.2.5-p319) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="rest-client (v2.0.0, ruby-2.2.5-p319) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.5.0, ruby-2.2.5-p319) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.5.4, ruby-2.2.5-p319) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.5.0, ruby-2.2.5-p319) [gem]" level="application" />
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.5.0, ruby-2.2.5-p319) [gem]" level="application" />
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.5.0, ruby-2.2.5-p319) [gem]" level="application" />
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop (v0.47.1, ruby-2.2.5-p319) [gem]" level="application" />
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.8.1, ruby-2.2.5-p319) [gem]" level="application" />
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="safe_yaml (v1.0.4, ruby-2.2.5-p319) [gem]" level="application" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov (v0.9.2, ruby-2.2.5-p319) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-console (v0.2.0, ruby-2.2.5-p319) [gem]" level="application" />
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.9.0, ruby-2.2.5-p319) [gem]" level="application" />
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="typesafe_enum (v0.1.7, ruby-2.2.5-p319) [gem]" level="application" />
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="unf (v0.1.4, ruby-2.2.5-p319) [gem]" level="application" />
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="unf_ext (v0.0.7.2, ruby-2.2.5-p319) [gem]" level="application" />
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v1.1.3, ruby-2.2.5-p319) [gem]" level="application" />
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="webmock (v1.24.6, ruby-2.2.5-p319) [gem]" level="application" />
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="xml-mapping (v0.10.0, ruby-2.2.5-p319) [gem]" level="application" />
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="xml-mapping_extensions (v0.4.7, ruby-2.2.5-p319) [gem]" level="application" />
|
53
|
+
<orderEntry type="library" scope="PROVIDED" name="yard (v0.9.8, ruby-2.2.5-p319) [gem]" level="application" />
|
54
|
+
</component>
|
55
|
+
<component name="RModuleSettingsStorage">
|
56
|
+
<LOAD_PATH number="2" string0="$MODULE_DIR$/lib" string1="$MODULE_DIR$/spec" />
|
57
|
+
<I18N_FOLDERS number="0" />
|
58
|
+
</component>
|
59
|
+
</module>
|
data/stash-sword.ipr
ADDED
@@ -0,0 +1,203 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="CompilerConfiguration">
|
4
|
+
<resourceExtensions />
|
5
|
+
<wildcardResourcePatterns>
|
6
|
+
<entry name="!?*.java" />
|
7
|
+
<entry name="!?*.form" />
|
8
|
+
<entry name="!?*.class" />
|
9
|
+
<entry name="!?*.groovy" />
|
10
|
+
<entry name="!?*.scala" />
|
11
|
+
<entry name="!?*.flex" />
|
12
|
+
<entry name="!?*.kt" />
|
13
|
+
<entry name="!?*.clj" />
|
14
|
+
<entry name="!?*.aj" />
|
15
|
+
<entry name="!?*.ceylon" />
|
16
|
+
</wildcardResourcePatterns>
|
17
|
+
<annotationProcessing>
|
18
|
+
<profile default="true" name="Default" enabled="false">
|
19
|
+
<processorPath useClasspath="true" />
|
20
|
+
</profile>
|
21
|
+
</annotationProcessing>
|
22
|
+
</component>
|
23
|
+
<component name="CopyrightManager" default="" />
|
24
|
+
<component name="EmacsSettings">
|
25
|
+
<option name="emacsPath" value="/usr/bin/emacs" />
|
26
|
+
</component>
|
27
|
+
<component name="Encoding">
|
28
|
+
<file url="PROJECT" charset="UTF-8" />
|
29
|
+
</component>
|
30
|
+
<component name="EntryPointsManager">
|
31
|
+
<entry_points version="2.0" />
|
32
|
+
</component>
|
33
|
+
<component name="GradleLocalSettings">
|
34
|
+
<option name="modificationStamps">
|
35
|
+
<map>
|
36
|
+
<entry key="$USER_HOME$/Dropbox/Personal/Work/III/dev/III/sierra-api" value="4174126313000" />
|
37
|
+
<entry key="$USER_HOME$/Projects/apsu-devel-scala" value="14577450991000" />
|
38
|
+
<entry key="$USER_HOME$/Projects/conditrix" value="1458232668000" />
|
39
|
+
<entry key="$USER_HOME$/Projects/ephemera-places" value="2869141444000" />
|
40
|
+
<entry key="$USER_HOME$/Projects/fffppp-scala" value="2909057274000" />
|
41
|
+
<entry key="$USER_HOME$/Projects/lingtoolkit" value="1455838165000" />
|
42
|
+
<entry key="$USER_HOME$/Projects/np" value="2861856364000" />
|
43
|
+
<entry key="$USER_HOME$/Projects/scala-enum" value="2869161406000" />
|
44
|
+
<entry key="$USER_HOME$/Projects/scala-project-template" value="1455300816000" />
|
45
|
+
<entry key="$USER_HOME$/Projects/scratch" value="2916856355000" />
|
46
|
+
<entry key="$PROJECT_DIR$/../Dash/ResourceSync/bindings" value="2859322410000" />
|
47
|
+
<entry key="$PROJECT_DIR$/../EOT/eoth-tools" value="2884512223000" />
|
48
|
+
</map>
|
49
|
+
</option>
|
50
|
+
<option name="externalProjectsViewState">
|
51
|
+
<projects_view />
|
52
|
+
</option>
|
53
|
+
</component>
|
54
|
+
<component name="InspectionProjectProfileManager">
|
55
|
+
<profile version="1.0">
|
56
|
+
<option name="myName" value="Project Default" />
|
57
|
+
<inspection_tool class="LoggerInitializedWithForeignClass" enabled="false" level="WARNING" enabled_by_default="false">
|
58
|
+
<option name="loggerClassName" value="org.apache.log4j.Logger,org.slf4j.LoggerFactory,org.apache.commons.logging.LogFactory,java.util.logging.Logger" />
|
59
|
+
<option name="loggerFactoryMethodName" value="getLogger,getLogger,getLog,getLogger" />
|
60
|
+
</inspection_tool>
|
61
|
+
<inspection_tool class="RubyConstantNamingConvention" enabled="true" level="WARNING" enabled_by_default="true">
|
62
|
+
<option name="m_minLength" value="2" />
|
63
|
+
</inspection_tool>
|
64
|
+
<inspection_tool class="RubyParameterNamingConvention" enabled="false" level="WARNING" enabled_by_default="false" />
|
65
|
+
<inspection_tool class="RubyResolve" enabled="false" level="WARNING" enabled_by_default="false">
|
66
|
+
<option name="warnImplicitResults" value="false" />
|
67
|
+
</inspection_tool>
|
68
|
+
<inspection_tool class="RubyStringKeysInHashInspection" enabled="false" level="WARNING" enabled_by_default="false" />
|
69
|
+
<inspection_tool class="RubyTooManyInstanceVariablesInspection" enabled="false" level="WARNING" enabled_by_default="false" />
|
70
|
+
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
71
|
+
<option name="processCode" value="true" />
|
72
|
+
<option name="processLiterals" value="true" />
|
73
|
+
<option name="processComments" value="true" />
|
74
|
+
</inspection_tool>
|
75
|
+
</profile>
|
76
|
+
<option name="PROJECT_PROFILE" value="Project Default" />
|
77
|
+
<option name="USE_PROJECT_PROFILE" value="true" />
|
78
|
+
<version value="1.0" />
|
79
|
+
</component>
|
80
|
+
<component name="MavenImportPreferences">
|
81
|
+
<option name="generalSettings">
|
82
|
+
<MavenGeneralSettings>
|
83
|
+
<option name="mavenHome" value="Bundled (Maven 3)" />
|
84
|
+
</MavenGeneralSettings>
|
85
|
+
</option>
|
86
|
+
</component>
|
87
|
+
<component name="ProjectCodeStyleSettingsManager">
|
88
|
+
<option name="PER_PROJECT_SETTINGS">
|
89
|
+
<value>
|
90
|
+
<XML>
|
91
|
+
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
|
92
|
+
</XML>
|
93
|
+
</value>
|
94
|
+
</option>
|
95
|
+
<option name="PREFERRED_PROJECT_CODE_STYLE" value="DM" />
|
96
|
+
</component>
|
97
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
98
|
+
<OptionsSetting value="true" id="Add" />
|
99
|
+
<OptionsSetting value="true" id="Remove" />
|
100
|
+
<OptionsSetting value="true" id="Checkout" />
|
101
|
+
<OptionsSetting value="true" id="Update" />
|
102
|
+
<OptionsSetting value="true" id="Status" />
|
103
|
+
<OptionsSetting value="true" id="Edit" />
|
104
|
+
<ConfirmationsSetting value="0" id="Add" />
|
105
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
106
|
+
</component>
|
107
|
+
<component name="ProjectModuleManager">
|
108
|
+
<modules>
|
109
|
+
<module fileurl="file://$PROJECT_DIR$/stash-sword.iml" filepath="$PROJECT_DIR$/stash-sword.iml" />
|
110
|
+
</modules>
|
111
|
+
</component>
|
112
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" default="false" assert-keyword="false" jdk-15="false">
|
113
|
+
<output url="file://$PROJECT_DIR$/out" />
|
114
|
+
</component>
|
115
|
+
<component name="RunManager">
|
116
|
+
<configuration default="true" type="Applet" factoryName="Applet">
|
117
|
+
<module />
|
118
|
+
<option name="WIDTH" value="400" />
|
119
|
+
<option name="HEIGHT" value="300" />
|
120
|
+
<option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
|
121
|
+
<method />
|
122
|
+
</configuration>
|
123
|
+
<configuration default="true" type="Application" factoryName="Application">
|
124
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
125
|
+
<option name="MAIN_CLASS_NAME" />
|
126
|
+
<option name="VM_PARAMETERS" />
|
127
|
+
<option name="PROGRAM_PARAMETERS" />
|
128
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
129
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
130
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
131
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
132
|
+
<option name="ENV_VARIABLES" />
|
133
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
134
|
+
<module name="" />
|
135
|
+
<envs />
|
136
|
+
<method />
|
137
|
+
</configuration>
|
138
|
+
<configuration default="true" type="JUnit" factoryName="JUnit">
|
139
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
140
|
+
<module name="" />
|
141
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
142
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
143
|
+
<option name="PACKAGE_NAME" />
|
144
|
+
<option name="MAIN_CLASS_NAME" />
|
145
|
+
<option name="METHOD_NAME" />
|
146
|
+
<option name="TEST_OBJECT" value="class" />
|
147
|
+
<option name="VM_PARAMETERS" value="-ea" />
|
148
|
+
<option name="PARAMETERS" />
|
149
|
+
<option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
|
150
|
+
<option name="ENV_VARIABLES" />
|
151
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
152
|
+
<option name="TEST_SEARCH_SCOPE">
|
153
|
+
<value defaultName="singleModule" />
|
154
|
+
</option>
|
155
|
+
<envs />
|
156
|
+
<patterns />
|
157
|
+
<method />
|
158
|
+
</configuration>
|
159
|
+
<configuration default="true" type="Remote" factoryName="Remote">
|
160
|
+
<option name="USE_SOCKET_TRANSPORT" value="true" />
|
161
|
+
<option name="SERVER_MODE" value="false" />
|
162
|
+
<option name="SHMEM_ADDRESS" value="javadebug" />
|
163
|
+
<option name="HOST" value="localhost" />
|
164
|
+
<option name="PORT" value="5005" />
|
165
|
+
<method />
|
166
|
+
</configuration>
|
167
|
+
<configuration name="<template>" type="TestNG" default="true" selected="false">
|
168
|
+
<option name="MAIN_CLASS_NAME" />
|
169
|
+
<option name="VM_PARAMETERS" value="-ea" />
|
170
|
+
<option name="PARAMETERS" />
|
171
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
172
|
+
</configuration>
|
173
|
+
</component>
|
174
|
+
<component name="SbtLocalSettings">
|
175
|
+
<option name="modificationStamps">
|
176
|
+
<map>
|
177
|
+
<entry key="$USER_HOME$/Scratch/scalafx-ensemble" value="1456441591000" />
|
178
|
+
</map>
|
179
|
+
</option>
|
180
|
+
<option name="externalProjectsViewState">
|
181
|
+
<projects_view />
|
182
|
+
</option>
|
183
|
+
</component>
|
184
|
+
<component name="VcsDirectoryMappings">
|
185
|
+
<mapping directory="" vcs="Git" />
|
186
|
+
</component>
|
187
|
+
<component name="masterDetails">
|
188
|
+
<states>
|
189
|
+
<state key="ProjectJDKs.UI">
|
190
|
+
<settings>
|
191
|
+
<last-edited>1.8</last-edited>
|
192
|
+
<splitter-proportions>
|
193
|
+
<option name="proportions">
|
194
|
+
<list>
|
195
|
+
<option value="0.2" />
|
196
|
+
</list>
|
197
|
+
</option>
|
198
|
+
</splitter-proportions>
|
199
|
+
</settings>
|
200
|
+
</state>
|
201
|
+
</states>
|
202
|
+
</component>
|
203
|
+
</project>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stash-sword
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Moles
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -160,14 +160,14 @@ dependencies:
|
|
160
160
|
requirements:
|
161
161
|
- - "~>"
|
162
162
|
- !ruby/object:Gem::Version
|
163
|
-
version: '0.
|
163
|
+
version: '0.47'
|
164
164
|
type: :development
|
165
165
|
prerelease: false
|
166
166
|
version_requirements: !ruby/object:Gem::Requirement
|
167
167
|
requirements:
|
168
168
|
- - "~>"
|
169
169
|
- !ruby/object:Gem::Version
|
170
|
-
version: '0.
|
170
|
+
version: '0.47'
|
171
171
|
- !ruby/object:Gem::Dependency
|
172
172
|
name: webmock
|
173
173
|
requirement: !ruby/object:Gem::Requirement
|
@@ -244,6 +244,8 @@ files:
|
|
244
244
|
- spec/unit/stash/sword2/namespaces_spec.rb
|
245
245
|
- spec/unit/stash/sword2/sequence_io_spec.rb
|
246
246
|
- stash-sword.gemspec
|
247
|
+
- stash-sword.iml
|
248
|
+
- stash-sword.ipr
|
247
249
|
homepage: http://github.com/stash-sword
|
248
250
|
licenses:
|
249
251
|
- MIT
|