light-services 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: 5e2b1c27bb806cccaf1658ac7d22cc5aff34b32f
4
+ data.tar.gz: 6821f5cdf7a53157ef374477d8bdcbedbc32317e
5
+ SHA512:
6
+ metadata.gz: efe58c674ab1d96db99203ef7564219e4e9adecb3faf1d21b595075e7ea197d9e4f6d9a2e325c1426795f52d145332f9a1038defdf617d07db7197241f9b66dd
7
+ data.tar.gz: dcf525fd6854f44f99b904f34523ae87c8744cd944f64f326796bd299e4075df4772f5a0724eb25ea91e7fd1d224b4f56ce825e96624d47e9092dad88cc9a195
data/.codeclimate.yml ADDED
@@ -0,0 +1,16 @@
1
+ ---
2
+ engines:
3
+ duplication:
4
+ enabled: true
5
+ config:
6
+ languages:
7
+ - ruby
8
+ fixme:
9
+ enabled: true
10
+ rubocop:
11
+ enabled: true
12
+ ratings:
13
+ paths:
14
+ - "**.rb"
15
+ exclude_paths:
16
+ - spec/
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /.idea/
11
+ /spec/internal/db/combustion_test.sqlite
12
+ /*.gem
13
+ /.ruby-version
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color