similar_count 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
+ SHA256:
3
+ metadata.gz: 89ef994fc0588ae1ce136d60a0662ac86f0758f6074f69e93d2f832bcef2c603
4
+ data.tar.gz: 21c5879e1c80bf7302284235b9568fd9fdef210c4adb2cb8f764c4ad6b47eacd
5
+ SHA512:
6
+ metadata.gz: '096604cec164c666e5cccde2b04cd27903c32d57695d2f4e680a5347ae2430d55f141f55274f2632f9125fa495653a4668581cc7554d118fa72ecf5b3957c247'
7
+ data.tar.gz: e0c11fe652156503178156ae1c8a59632cd2a57fa9f374ad0e3e148785e57b68dcab09e660e2812bfd2d4a4acf4b40183f97ebd9b7833135f81508e323bd0af8
@@ -0,0 +1,18 @@
1
+ name: Ruby
2
+
3
+ on: [push,pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Set up Ruby
11
+ uses: ruby/setup-ruby@v1
12
+ with:
13
+ ruby-version: 2.6.3
14
+ - name: Run the default task
15
+ run: |
16
+ gem install bundler -v 2.2.4
17
+ bundle install
18
+ bundle exec rake
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+ .idea
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper