gris 0.5.9 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop_todo.yml +2 -2
- data/.ruby-version +1 -1
- data/Gemfile.lock +2 -2
- data/lib/gris/generators/templates/scaffold/.gitignore.tt +0 -2
- data/lib/gris/generators/templates/scaffold/.ruby-version.tt +1 -1
- data/lib/gris/generators/templates/scaffold/Gemfile.tt +1 -1
- data/lib/gris/version.rb +1 -1
- data/spec/generators/scaffold_generator_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e442419cb2acf2a727b4479cf0dd96abc9b67c11
|
4
|
+
data.tar.gz: 1cdc3caa247d14bf57458283400ab2ac87a7b7d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ac390a50ec60b1370637cbb419fd232beffc316a540e1af715bf824c0a8543609ef822b2e7ee4be035ace1f1e3ce027bc2af823158be546c3d5e6f4ab4d23ce
|
7
|
+
data.tar.gz: 8dc4b7dede9f6e13508d041ec84bcd2599253880c4fe0cae266729c299e7a966b53985daad5c145a2bd65aacdb197834d349c2369b18832b1b1bc88724414d59
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2015-12-
|
3
|
+
# on 2015-12-28 10:08:44 -0500 using RuboCop version 0.34.2.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -30,7 +30,7 @@ Metrics/ClassLength:
|
|
30
30
|
Metrics/CyclomaticComplexity:
|
31
31
|
Max: 11
|
32
32
|
|
33
|
-
# Offense count:
|
33
|
+
# Offense count: 80
|
34
34
|
# Configuration parameters: AllowURI, URISchemes.
|
35
35
|
Metrics/LineLength:
|
36
36
|
Max: 159
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby-2.2.
|
1
|
+
ruby-2.2.4
|
data/Gemfile.lock
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.4
|
data/lib/gris/version.rb
CHANGED
@@ -49,9 +49,9 @@ describe Gris::Generators::ScaffoldGenerator do
|
|
49
49
|
expect(seed_file).to match(/all the record creation needed to seed the database/)
|
50
50
|
end
|
51
51
|
|
52
|
-
it 'adds ruby 2.2.
|
52
|
+
it 'adds ruby 2.2.4 to Gemfile' do
|
53
53
|
gemfile = File.read("#{app_path}/Gemfile")
|
54
|
-
expect(gemfile).to match(/ruby '2.2.
|
54
|
+
expect(gemfile).to match(/ruby '2.2.4'/)
|
55
55
|
end
|
56
56
|
|
57
57
|
it 'adds the puma gem in the Gemfile' do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gris
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dylan Fareed
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|