diskcatalog 0.3.0 → 0.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fecee62476c7ba3617e40c7508c6e89c1f7fd66f18c87b5e2b18d17b443275aa
4
- data.tar.gz: ab1b8549fd18d8770b0e8919a4e2196bc0731c188b503fbbd5fa8bf76b378038
3
+ metadata.gz: 5598122f882a50aa00d77dd73ee3a1501e609778d85ee5b5bb7d149dbd226ed9
4
+ data.tar.gz: 372b530e449db5d333067e3ca82949dfef4b3297ea7dd76cac495ab39d98bf7f
5
5
  SHA512:
6
- metadata.gz: f407c0a3853b19894ed9f99332e9c88e2e51b9ea244ac48154d87385547f663cccccd842b70c12c08881cf20c5846248250ef14271b3bf6e2ea9a048527507a8
7
- data.tar.gz: 9219b5b01ab1068a8865b95ec6412e05a8f4396dca81a471996d44e455a2c2812ef0177de5cf314e27a411a7334579eaeaadd6d77d457efd70a614bb399ecb00
6
+ metadata.gz: f739b3fbafff3bc58adbe9dfd274b14860c105267d007551cf290c7a0edd659e825f3e16b621b93ad0d58e21ed2aa1fc75c8a17fa0c8e498a769bbcc30318571
7
+ data.tar.gz: 9705f8b4e95317eab5a4693922dfb7a00d30642105d6036f4cbccba3bb6655df6839df745c0592c85af5354d54f65e2bce34d3babfb981f7080ddb28fce166e2
data/.idea/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Editor-based HTTP Client requests
5
+ /httpRequests/
6
+ # Datasource local storage ignored files
7
+ /dataSources/
8
+ /dataSources.local.xml
data/.idea/misc.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectRootManager" version="2" project-jdk-name="rbenv: 3.1.4" project-jdk-type="RUBY_SDK">
4
+ <output url="file://$PROJECT_DIR$/out" />
5
+ </component>
6
+ </project>
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="" vcs="Git" />
5
+ </component>
6
+ </project>
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- diskcatalog (0.3.0)
4
+ diskcatalog (0.9.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/build.cmd ADDED
@@ -0,0 +1,14 @@
1
+ @echo off
2
+
3
+ call uru 305p211
4
+
5
+ set bundle_dir=./vendor/bundle
6
+
7
+ IF EXIST "vendor/bundle/" (
8
+ echo update
9
+ rmdir /s /q vendor\bundle
10
+ bundle update
11
+ ) ELSE (
12
+ echo install
13
+ bundle install --path %bundle_dir%
14
+ )
data/data/.gitignore ADDED
File without changes