fluent-plugin-parser_cefalt 1.0.6

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: c37e4b03e736ed32c0291c3745ba5c9f3380e5678e8e0df39bf5470c155aa505
4
+ data.tar.gz: 1f1e7298c1a8c7305ccad7163ce0ae872660dfac4ca7292d6620dabcb374b7f7
5
+ SHA512:
6
+ metadata.gz: 0a4ccfc5e74a31ebdd9af684628df2416e052df272c950142e02b75ce9ab9a117a64314a769e5a4d81c96a9d5991dd2dda393be43ec1b8f03ba8a8c371f6b1e4
7
+ data.tar.gz: 81b9aa72250ef49627ef4b0adbb8cc24ce6c86eec0d3dd4760f163035bc5115ef89a9c915c73cba2bb2b337c1f4889af9fbdaf65f8195e2a6cab441f232b1b27
data/.codeclimate.yml ADDED
@@ -0,0 +1,29 @@
1
+ engines:
2
+ duplication:
3
+ enabled: true
4
+ config:
5
+ languages:
6
+ - ruby
7
+ - javascript
8
+ - python
9
+ - php
10
+ fixme:
11
+ enabled: true
12
+ rubocop:
13
+ enabled: true
14
+ checks:
15
+ Rubocop/Metrics/MethodLength:
16
+ enabled: false
17
+ Rubocop/Metrics/CyclomaticComplexity:
18
+ enabled: false
19
+ ratings:
20
+ paths:
21
+ - "**.inc"
22
+ - "**.js"
23
+ - "**.jsx"
24
+ - "**.module"
25
+ - "**.php"
26
+ - "**.py"
27
+ - "**.rb"
28
+ exclude_paths:
29
+ - spec/
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore ADDED
@@ -0,0 +1,58 @@
1
+
2
+ # Created by https://www.gitignore.io/api/git,ruby
3
+
4
+ ### Git ###
5
+ *.orig
6
+
7
+
8
+ ### Ruby ###
9
+ *.gem
10
+ *.rbc
11
+ /.config
12
+ /coverage/
13
+ /InstalledFiles
14
+ /pkg/
15
+ /spec/reports/
16
+ /spec/examples.txt
17
+ /test/tmp/
18
+ /test/version_tmp/
19
+ /tmp/
20
+
21
+ # Used by dotenv library to load environment variables.
22
+ .env
23
+
24
+ ## Specific to RubyMotion:
25
+ .dat*
26
+ .repl_history
27
+ build/
28
+ *.bridgesupport
29
+ build-iPhoneOS/
30
+ build-iPhoneSimulator/
31
+
32
+ ## Specific to RubyMotion (use of CocoaPods):
33
+ #
34
+ # We recommend against adding the Pods directory to your .gitignore. However
35
+ # you should judge for yourself, the pros and cons are mentioned at:
36
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
37
+ #
38
+ vendor/Pods/
39
+
40
+ ## Documentation cache and generated files:
41
+ /.yardoc/
42
+ /_yardoc/
43
+ /doc/
44
+ /rdoc/
45
+
46
+ ## Environment normalization:
47
+ /.bundle/
48
+ /vendor/bundle
49
+ /lib/bundler/man/
50
+
51
+ # for a library or gem, you might want to ignore these files since the code is
52
+ # intended to run in multiple environments; otherwise, check them in:
53
+ Gemfile.lock
54
+ .ruby-version
55
+ .ruby-gemset
56
+
57
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
58
+ .rvmrc
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --require spec_helper
3
+ --format documentation