bibliothecary 6.2.0 → 6.2.1
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 +4 -4
- data/.github/SUPPORT.md +10 -0
- data/.travis.yml +7 -4
- data/README.md +3 -0
- data/lib/bibliothecary/analyser.rb +1 -0
- data/lib/bibliothecary/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87546647f5b30d4c0566c2ac8250c93457faa25e5a62c5b68940769933cb8022
|
|
4
|
+
data.tar.gz: 98731eadb2b6b140406297b7adb11e77c65af0f58bf79c6746bed14ff4c838bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee478945ae49e5bfd03bd7c0a8b54c06c5882d92f5db24f299eda6383a703123b5f0ffba49195f6a3b61e731bbab3d7d0f31aececb9dc450353286e07d2430dd
|
|
7
|
+
data.tar.gz: 0fbc48971d1417256ff6ca57cb4d6990276aa5b3d09b88cd99bd8e88c9bb9be2882a8b7ad726549114a4547e83322d13572e133be6f6b82a574bdfb78f40c963
|
data/.github/SUPPORT.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Libraries.io Support
|
|
2
|
+
|
|
3
|
+
If you're looking for support for Libraries.io there are a lot of options, check out:
|
|
4
|
+
|
|
5
|
+
* Documentation — https://docs.libraries.io
|
|
6
|
+
* Email — support@libraries.io
|
|
7
|
+
* Twitter — https://twitter.com/librariesio
|
|
8
|
+
* Chat — https://slack.libraries.io
|
|
9
|
+
|
|
10
|
+
On Discuss and in the Libraries.io Slack team, there are a bunch of helpful community members that should be willing to point you in the right direction.
|
data/.travis.yml
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
- 2.4.2
|
|
4
|
+
- 2.5.0
|
|
5
5
|
cache: bundler
|
|
6
6
|
before_install:
|
|
7
|
-
|
|
7
|
+
- gem update --system
|
|
8
8
|
script:
|
|
9
|
-
|
|
9
|
+
- bundle exec rake spec && bundle exec codeclimate-test-reporter
|
|
10
|
+
notifications:
|
|
11
|
+
slack:
|
|
12
|
+
secure: MkuDOE57uFrypxJGB7fy6Mq7uT77SzC3ApXVbdpx8k+4ihwLK+7Gyn0IzJ0f24B9PprH2RzmFoHk6XPjSjVCAEoCHvuv2ntHPX3FqxkBXdkb3NjKjOvV1+rRt9D+3sG6IEY5M5ak7j34W0FGgczNQs3+IOGCs3NIJP/h2mAL02w8oZFU2LMGYY6gX7LL+z4q65Ag5mDMwN9kslmWELO7k8xLPunlCh9jRWbZpxzFKwsHC4HtygejWwijNlSAt6Rk2XaPJ4jR8PO8uvWR1+iXxOVFErZ/nriybYMdThpLUdLWWHn6n+a3lu9vpo0KtnMrVq/E5KSaM1bilKxTuFR35AU9kbMv2L9cs65sRz1rSa2CnfN+788icesDyePh6ZjDOb+5zvxOViDvoEc9cIogf6JJT8hDpvF0zDqEuU+CTvh+3AqRGS7yjlsviQZofB8Fr/VMjZzuHL45T1+4O46eryO1PZpNYlq9svLRgpkdmu5A+SFwlM2K7Zc4ND5GSlCnWdGx1ThBp1u1lFYvw2IMeU5bylS+ak4xt+S2YH5Hmc0y7F0nvB54mmap8T7GGc7dFhLaLTaTTijHF70HJgsDKCnPsRqk5Bt2h7grBMT6t9AG+6Hg0QVFJ4ZSfnM2IBb57naVhUpMFjYT9fnLrjIAg9rY1GW6kkowFdoj6mvFhAM=
|
data/README.md
CHANGED
|
@@ -44,6 +44,7 @@ module Bibliothecary
|
|
|
44
44
|
def analyse(folder_path, file_list)
|
|
45
45
|
file_list.map do |path|
|
|
46
46
|
filename = path.gsub(folder_path, '').gsub(/^\//, '')
|
|
47
|
+
next unless match?(filename)
|
|
47
48
|
contents = File.open(path).read
|
|
48
49
|
analyse_contents(filename, contents)
|
|
49
50
|
end.compact
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bibliothecary
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.2.
|
|
4
|
+
version: 6.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Nesbitt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: toml-rb
|
|
@@ -164,6 +164,7 @@ files:
|
|
|
164
164
|
- ".github/CONTRIBUTING.md"
|
|
165
165
|
- ".github/ISSUE_TEMPLATE.md"
|
|
166
166
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
167
|
+
- ".github/SUPPORT.md"
|
|
167
168
|
- ".gitignore"
|
|
168
169
|
- ".rspec"
|
|
169
170
|
- ".rubocop.yml"
|