ivaldi 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/.rubocop.yml +56 -0
  3. metadata +45 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2ea94c432246359cd71fce361b1bc0fca282f6f7
4
+ data.tar.gz: 8036602b3ace6ee11b864a562826e106e1bf5dbb
5
+ SHA512:
6
+ metadata.gz: e03f450e5f8f418953102ecf7b357868e01dbbb057cd8e0b9aa4b8d42e047b85ed0843c33f05daa1f4ab29bf645622c92822c44c6c43746039755ab2367b0e4f
7
+ data.tar.gz: 5e990a6d81d7042c158fa7efb896f5bcec87a52990519d358c48759cef63de05af9ee16f2f011f852857bea24ec144048c3abc1b378e7d2906cbe8046dc2da1d
data/.rubocop.yml ADDED
@@ -0,0 +1,56 @@
1
+ AllCops:
2
+ Exclude:
3
+ - bin/*
4
+ - config/**/*
5
+ - db/schema.rb
6
+ - Rakefile
7
+ - test/test_helper.rb
8
+ - test/application_system_test_case.rb
9
+
10
+ Layout/AlignParameters:
11
+ EnforcedStyle: with_fixed_indentation
12
+ IndentationWidth: 4
13
+
14
+ Layout/AlignHash:
15
+ Enabled: false
16
+
17
+ Layout/EmptyLines:
18
+ Exclude:
19
+ - Gemfile
20
+
21
+ Layout/FirstParameterIndentation:
22
+ Enabled: false
23
+
24
+ Layout/MultilineMethodCallIndentation:
25
+ EnforcedStyle: indented
26
+ IndentationWidth: 4
27
+
28
+ Layout/MultilineOperationIndentation:
29
+ EnforcedStyle: indented
30
+ IndentationWidth: 4
31
+
32
+ Metrics/LineLength:
33
+ Exclude:
34
+ - Gemfile
35
+
36
+ Metrics/LineLength:
37
+ Exclude:
38
+ - db/seeds.rb
39
+ - Gemfile
40
+
41
+ Rails:
42
+ Enabled: true
43
+
44
+ Style/Documentation:
45
+ Enabled: false
46
+
47
+ Style/SymbolArray:
48
+ EnforcedStyle: brackets
49
+
50
+ Style/WordArray:
51
+ EnforcedStyle: brackets
52
+
53
+ Style/StringLiterals:
54
+ Exclude:
55
+ - Capfile
56
+ - Gemfile
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ivaldi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Frank Groeneveld
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-06-23 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A gem that contains helpers and configs for Ivaldi projects
14
+ email:
15
+ - frank@ivaldi.nl
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rubocop.yml"
21
+ homepage: https://ivaldi.nl
22
+ licenses:
23
+ - BSD-2-Clause
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.5.2
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Ivaldi configs and helpers
45
+ test_files: []