ivaldi 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2ea94c432246359cd71fce361b1bc0fca282f6f7
4
- data.tar.gz: 8036602b3ace6ee11b864a562826e106e1bf5dbb
3
+ metadata.gz: 2a6033014db9f7592083c94569d85ee68b04a253
4
+ data.tar.gz: 46f9b09aa24e9ab39cff29d1211a13a89322d468
5
5
  SHA512:
6
- metadata.gz: e03f450e5f8f418953102ecf7b357868e01dbbb057cd8e0b9aa4b8d42e047b85ed0843c33f05daa1f4ab29bf645622c92822c44c6c43746039755ab2367b0e4f
7
- data.tar.gz: 5e990a6d81d7042c158fa7efb896f5bcec87a52990519d358c48759cef63de05af9ee16f2f011f852857bea24ec144048c3abc1b378e7d2906cbe8046dc2da1d
6
+ metadata.gz: 8e8c523d6399d9c7411a9f2a1e92bf343e9b78fd529733ec7f4499c40e49cb0534796b0bd319cf7dbfd9ad36f0fa1f7f09f8971a5fbdfde91974085028c37447
7
+ data.tar.gz: e134dd4de74a7895a66faaeffa7133857d7fe37d71e69d6cbff7c6094df4dcc32ace33dd55d6c1b93a504345ea4663a348d20e620c719873b495f1dbcf3b4904
data/.rubocop.yml CHANGED
@@ -44,6 +44,9 @@ Rails:
44
44
  Style/Documentation:
45
45
  Enabled: false
46
46
 
47
+ Style/EmptyMethod:
48
+ EnforcedStyle: expanded
49
+
47
50
  Style/SymbolArray:
48
51
  EnforcedStyle: brackets
49
52
 
data/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ BSD 2-Clause License
2
+
3
+ Copyright (c) 2017, ivaldi
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ * Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ * Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,6 @@
1
+ module Ivaldi
2
+ class InstallGenerator < Rails::Generators::Base
3
+ def rubocop_config
4
+ end
5
+ end
6
+ end
data/lib/ivaldi.rb ADDED
@@ -0,0 +1,2 @@
1
+ module Ivaldi
2
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ivaldi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Frank Groeneveld
@@ -9,7 +9,35 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2017-06-23 00:00:00.000000000 Z
12
- dependencies: []
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '5.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '5.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
13
41
  description: A gem that contains helpers and configs for Ivaldi projects
14
42
  email:
15
43
  - frank@ivaldi.nl
@@ -18,6 +46,9 @@ extensions: []
18
46
  extra_rdoc_files: []
19
47
  files:
20
48
  - ".rubocop.yml"
49
+ - LICENSE
50
+ - lib/generators/ivaldi/install_generator.rb
51
+ - lib/ivaldi.rb
21
52
  homepage: https://ivaldi.nl
22
53
  licenses:
23
54
  - BSD-2-Clause