transform_tree 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: 384deea69c93838c12f9651835d96197fc7d5709
4
+ data.tar.gz: fe884e032e63970cc78b8764339f4990a385968b
5
+ SHA512:
6
+ metadata.gz: e23bccfb24fbb878bfe90157984c29a867bdb1470d780b2e9da0b234043feed33374667a26a34e842ffa9729cfc2d76fed303bd9fbc29d7a06d622cfe819a4ec
7
+ data.tar.gz: adf342ab35721cd433fe4f4ff3cf163ea70bfedbf6ea55fd41a1b567bfd661a51714904706ba68d1306699b9c5c9de8f5e14ed872c51cdb2521d1bc940131caf
data/.codeclimate.yml ADDED
@@ -0,0 +1,80 @@
1
+ ---
2
+ engines:
3
+ duplication:
4
+ enabled: true
5
+ config:
6
+ languages:
7
+ - ruby
8
+ - javascript
9
+ - python
10
+ - php
11
+ fixme:
12
+ enabled: true
13
+ rubocop:
14
+ enabled: true
15
+ ratings:
16
+ paths:
17
+ - "**.inc"
18
+ - "**.js"
19
+ - "**.jsx"
20
+ - "**.module"
21
+ - "**.php"
22
+ - "**.py"
23
+ - "**.rb"
24
+ exclude_paths:
25
+ - spec/
26
+ ---
27
+ engines:
28
+ duplication:
29
+ enabled: true
30
+ config:
31
+ languages:
32
+ - ruby
33
+ - javascript
34
+ - python
35
+ - php
36
+ fixme:
37
+ enabled: true
38
+ rubocop:
39
+ enabled: true
40
+ ratings:
41
+ paths:
42
+ - "**.inc"
43
+ - "**.js"
44
+ - "**.jsx"
45
+ - "**.module"
46
+ - "**.php"
47
+ - "**.py"
48
+ - "**.rb"
49
+ exclude_paths:
50
+ - spec/
51
+ ---
52
+ engines:
53
+ duplication:
54
+ enabled: true
55
+ config:
56
+ languages:
57
+ - ruby
58
+ fixme:
59
+ enabled: true
60
+ rubocop:
61
+ enabled: true
62
+ ratings:
63
+ paths:
64
+ - "**.rb"
65
+ exclude_paths:
66
+ - spec/
67
+ engines:
68
+ rubocop:
69
+ enabled: true
70
+ duplication:
71
+ enabled: true
72
+ config:
73
+ languages:
74
+ - ruby
75
+ ratings:
76
+ paths:
77
+ - lib/**
78
+ - "**.rb"
79
+ exclude_paths:
80
+ - spec/**/*
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /coverage
11
+ *.secret
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color