quartet 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20ed715ec1688a3ec94d26f4053e368f0ce699f49462f23788f7a2c0ae53b344
4
- data.tar.gz: d6007aba75e5bfb128789c384283fc5915d557dd690cbc0edb04175ac8f4ca59
3
+ metadata.gz: b7bcd3a9d8c188c91fbe44e0e8da2ad58e4a18832a8df12007299318eea3f044
4
+ data.tar.gz: da9c374c4825477751bc72425b1ee7dd16d9c740117f60073721c0265436df17
5
5
  SHA512:
6
- metadata.gz: 01031a8a052bfb2087270e70963a2161fe79e32802aef5316ac16a17e1a2a570d87ec141b1a1152005e71b47ba129277616dc489133000e499c3a6be3728c5e8
7
- data.tar.gz: c4f1b950d6398772534113abed7f4ff3d4ef3b34fecb1ca883bfd5e3e246a7856dc72498dcee7761cdeca72b4088abf0dc4b1780829ec90024fa4d11cf64d590
6
+ metadata.gz: 3a85ffa3af7af8dbaf685273e1205b96a97ddbc896b5c01c1a716e07996bbe75ae869f6fea08e0931340da2518ed1ee3f87a14db57992a669fc27d375b4c3fda
7
+ data.tar.gz: d1692e3836efd26e088b5f6b8e32266fb0ff49ea2ef67ec4e046eae7a67e2ed4418c8d89bf91ac0eef013bf9113b03b109ff20e7dd78b9ac328fcc9acd4bb378
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- quartet (0.1.2)
4
+ quartet (0.1.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,3 +1,3 @@
1
1
  module Quartet
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{Sinatra + ActiveRecord + MySQL + Rake}
13
13
  spec.description = %q{A quick start generator for database backed Sinatra apps}
14
- spec.homepage = "https://github.com/guineec/quartet"
14
+ spec.homepage = "https://cguinee.com/quartet"
15
15
  spec.license = "MIT"
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quartet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cian Guinee
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-18 00:00:00.000000000 Z
11
+ date: 2020-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -60,17 +60,16 @@ files:
60
60
  - lib/quartet/builders/config.rb
61
61
  - lib/quartet/builders/database.rb
62
62
  - lib/quartet/builders/gemfile.rb
63
- - lib/quartet/builders/index.rb
64
63
  - lib/quartet/builders/rakefile.rb
65
64
  - lib/quartet/builders/readme.rb
66
65
  - lib/quartet/builders/welcome.rb
67
66
  - lib/quartet/version.rb
68
67
  - quartet.gemspec
69
- homepage: https://github.com/guineec/quartet
68
+ homepage: https://cguinee.com/quartet
70
69
  licenses:
71
70
  - MIT
72
71
  metadata:
73
- homepage_uri: https://github.com/guineec/quartet
72
+ homepage_uri: https://cguinee.com/quartet
74
73
  source_code_uri: https://github.com/guineec/quartet
75
74
  changelog_uri: https://github.com/guineec/quartet
76
75
  post_install_message:
@@ -1,50 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Quartet::Builders
4
- class Index < Quartet::Builders::Builder
5
- def initialize
6
- @directory = 'public'
7
- @file_type = '.html'
8
- end
9
-
10
- def build(_app_name)
11
- %(<!DOCTYPE html>
12
- <html lang="en">
13
- <head>
14
- <meta charset="UTF-8">
15
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
16
- <title>Unexpected Error</title>
17
- <style>
18
- .msg-container {
19
- display: flex;
20
- flex-direction: column;
21
- align-items: center;
22
- justify-content: center;
23
- width: 100vw;
24
- height: 100vh;
25
- font-family: arial,sans-serif;
26
- color: #333;
27
- }
28
-
29
- .header {
30
- font-size: 3rem;
31
- margin-bottom: 1rem;
32
- }
33
-
34
- .message {
35
- font-size: 1.2rem;
36
- margin-top: 0.3rem;
37
- }
38
- </style>
39
- </head>
40
- <body>
41
- <div class="msg-container">
42
- <h2 class="header">If you're seeing this...</h2>
43
- <h4 class="message">Something is wrong!</h4>
44
- </div>
45
- </body>
46
- </html>
47
- )
48
- end
49
- end
50
- end