ldp_testsuite_wrapper 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7c3ec21983a7900383b9ea60765fc540fde08025
4
+ data.tar.gz: e23c1fa1ab0c948847f5181fa2b5d49f8e492598
5
+ SHA512:
6
+ metadata.gz: 1534142b90e37724803e75430c51d2c13f756aa081f69a64d61ffa8dcabcd7fdb75c10d019485f4c3b1f418bb329921d6323bcbfd98d351580475131cb4526d8
7
+ data.tar.gz: e36a309dc4927506308d785a54995518b001dfcb3fa608d9ebbfdd3f6e11da8b2348b2f674a05e024f96cda356dc760cb53004979b384b4dcbd0952cd11b8c99
data/.gitignore ADDED
@@ -0,0 +1,35 @@
1
+ Gemfile.lock
2
+ *.gem
3
+ *.rbc
4
+ /.config
5
+ /coverage/
6
+ /InstalledFiles
7
+ /pkg/
8
+ /spec/reports/
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ ## Specific to RubyMotion:
14
+ .dat*
15
+ .repl_history
16
+ build/
17
+
18
+ ## Documentation cache and generated files:
19
+ /.yardoc/
20
+ /_yardoc/
21
+ /doc/
22
+ /rdoc/
23
+
24
+ ## Environment normalisation:
25
+ /.bundle/
26
+ /lib/bundler/man/
27
+
28
+ # for a library or gem, you might want to ignore these files since the code is
29
+ # intended to run in multiple environments; otherwise, check them in:
30
+ # Gemfile.lock
31
+ # .ruby-version
32
+ # .ruby-gemset
33
+
34
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
+ .rvmrc
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,12 @@
1
+ inherit_from:
2
+ - .rubocop_todo.yml
3
+
4
+ AllCops:
5
+ Exclude:
6
+ - "*.gemspec"
7
+
8
+ Metrics/LineLength:
9
+ Enabled: false
10
+
11
+ Metrics/AbcSize:
12
+ Max: 53