franksi 1.0.1 → 1.0.2

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
  SHA1:
3
- metadata.gz: 2af8113babd5cdca6a1c972c4564fecd5e89d3f5
4
- data.tar.gz: 3902471836e9e61c054406da0b4badfcff262de0
3
+ metadata.gz: 9b34501c6b094b4affcd85d4acd612964db615cb
4
+ data.tar.gz: bf0242be0351096b5f547faf9cf87c62bccb4109
5
5
  SHA512:
6
- metadata.gz: d8d42d3ecf3a0ef181d316129f4822686f170e3bf89cbc13cd1e6ad916d2c9b7c32b6cfcf1d5a85ad1e866c1b23008e81cd8d8aa1687b74e3ecd1e08570692f6
7
- data.tar.gz: c2bdcbd7dc7fcdd98400d4d6431da224cd0524609313f0daec93fbd55eb90684e94f4d94621e2c6b4c593db66ac7352748348794f64296213fa112967dbb4b33
6
+ metadata.gz: 2374d0d45086bbb5c0bde2d4a95d583de9ae10342b04119ea5a7b7ed7b4feb41f324c2e044449ec5f0552a6b8b80b6c57fc5a65d21b225a2df6f503ea3b8cd29
7
+ data.tar.gz: cbb331038fe1e44d3c2113093f6b2b671071663a5df41a10d0b671c5b998ec1e4b841459e231dddc0cb80de5e3d3b8db5f7b288299cf17aa67c0a4cda738cd9a
data/README.md CHANGED
@@ -1,16 +1,16 @@
1
1
  # Franksi
2
2
 
3
- A command-line tool Sinatra app generator. Yes, there are similar existing gems, but *I did it my way*.
3
+ A command-line tool Sinatra app generator. Yes, there are similar gems out there, but *I did it my way*.
4
4
 
5
5
  ## Installation
6
6
 
7
- Install it as:
7
+ Install it yourself as:
8
8
 
9
9
  $ gem install franksi
10
10
 
11
11
  ## Usage
12
12
 
13
- Create a basic Sinatra project:
13
+ Just run the executable to create a Sinatra project:
14
14
 
15
15
  $ franksi new your-project
16
16
 
@@ -21,14 +21,13 @@ The default template has the following structure:
21
21
  ```
22
22
  ├── public/
23
23
  │ ├── css/
24
- │ │ └── style.css
24
+ │ │ └── style.css
25
25
  │ ├── images/
26
- │ │ └── favicon.ico
26
+ │ │ └── favicon.ico
27
27
  │ └── javascripts/
28
28
  │ └── script.js
29
29
  ├── views/
30
- ├── index.html.erb
31
- │ └── layout.html.erb
30
+ └── index.html.erb
32
31
  ├── Gemfile
33
32
  ├── config.ru
34
33
  └── app.rb
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Lais Varejão"]
10
10
  spec.email = ["laisvarejao@gmail.com"]
11
11
  spec.summary = "A command-line tool Sinatra app generator."
12
- spec.description = "A command-line tool Sinatra app generator. Yes, there are similar existing gems, but I did it my way."
12
+ spec.description = "A command-line tool Sinatra app generator. Yes, there are similar gems out there, but I did it my way."
13
13
  spec.homepage = "https://github.com/laisvarejao/franksi"
14
14
  spec.license = "MIT"
15
15
 
@@ -1,3 +1,3 @@
1
1
  module Franksi
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -1 +1,17 @@
1
- <p>Hello, Frank Sinatra</p>
1
+ <!DOCTYPE html>
2
+ <html lang='en'>
3
+ <head>
4
+
5
+ <meta charset='UTF-8' />
6
+ <title></title>
7
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
8
+ <link rel="stylesheet" href="/css/style.css">
9
+ <link rel="icon" href="/images/favicon.ico">
10
+
11
+ </head>
12
+
13
+ <body>
14
+ <p>Hello, Frank Sinatra</p>
15
+ </body>
16
+
17
+ </html>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: franksi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lais Varejão
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-22 00:00:00.000000000 Z
11
+ date: 2015-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,8 +38,8 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
- description: A command-line tool Sinatra app generator. Yes, there are similar existing
42
- gems, but I did it my way.
41
+ description: A command-line tool Sinatra app generator. Yes, there are similar gems
42
+ out there, but I did it my way.
43
43
  email:
44
44
  - laisvarejao@gmail.com
45
45
  executables:
@@ -65,7 +65,6 @@ files:
65
65
  - lib/template/public/images/favicon.ico
66
66
  - lib/template/public/javascripts/script.js
67
67
  - lib/template/views/index.html.erb
68
- - lib/template/views/layout.html.erb
69
68
  homepage: https://github.com/laisvarejao/franksi
70
69
  licenses:
71
70
  - MIT
@@ -1,17 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang='en'>
3
- <head>
4
-
5
- <meta charset='UTF-8' />
6
- <title></title>
7
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
8
- <link rel="stylesheet" href="/css/style.css">
9
- <link rel="icon" href="/images/favicon.ico">
10
-
11
- </head>
12
-
13
- <body>
14
- <%= yield %>
15
- </body>
16
-
17
- </html>