ievkit 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 41780b734839d6da84178d6e14f650f82de3e334
4
+ data.tar.gz: 615db6de082888f4bc058915e9649785a56bab13
5
+ SHA512:
6
+ metadata.gz: a93583ee5d2c00c6f4257c020dacbd05deaa40fa65d42ba8624e1b6690288806a05fdd6a7da80ab4009cb99fadd37da3222331ff166643cd02461db3d11dcded
7
+ data.tar.gz: 3915e48f3b5a8a25217a19dea37775167aace835580b5f7fbc7a6134454a2ee5693b2f1e885642a6d4b1e9b0dc1b2fe2b8d499d96e89b2964ead5b7bafd67a1b
data/.codeclimate.yml ADDED
@@ -0,0 +1,29 @@
1
+ ---
2
+ engines:
3
+ bundler-audit:
4
+ enabled: true
5
+ duplication:
6
+ enabled: true
7
+ config:
8
+ languages:
9
+ - ruby
10
+ - javascript
11
+ - python
12
+ - php
13
+ fixme:
14
+ enabled: true
15
+ rubocop:
16
+ enabled: true
17
+ ratings:
18
+ paths:
19
+ - Gemfile.lock
20
+ - "**.inc"
21
+ - "**.js"
22
+ - "**.jsx"
23
+ - "**.module"
24
+ - "**.php"
25
+ - "**.py"
26
+ - "**.rb"
27
+ exclude_paths:
28
+ - config/
29
+ - spec/
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ .idea
10
+
11
+ # Ignore application configuration
12
+ /config/application.yml
13
+ resources/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color