showtime 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.
- data/README.markdown +5 -2
- data/VERSION +1 -1
- data/lib/showtime/templates/views/index.erb +1 -1
- data/showtime.gemspec +5 -5
- metadata +5 -5
data/README.markdown
CHANGED
|
@@ -8,7 +8,10 @@ Showtime's a sinatra apps generator based on [thor](http://github.com/wycats/tho
|
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
|
-
`showtime [appname] [
|
|
11
|
+
`showtime [appname] [options]`
|
|
12
|
+
|
|
13
|
+
Available options
|
|
12
14
|
|
|
13
15
|
appname folder name for the application. Otherwise uses the current folder.
|
|
14
|
-
--heroku builds a .gems file for heroku usage.
|
|
16
|
+
--heroku builds a .gems file for heroku usage.
|
|
17
|
+
--views creates the public/javascripts and public/stylesheets folders, and a sample index.erb view.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<title>Sinatra!</title>
|
|
5
|
-
<link rel="stylesheet" href="/stylesheets/
|
|
5
|
+
<link rel="stylesheet" href="/stylesheets/application.css" type='text/css' media="screen, projection" />
|
|
6
6
|
<script type="text/javascript" src="/javascripts/application.js">
|
|
7
7
|
</script>
|
|
8
8
|
</head>
|
data/showtime.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{showtime}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Lucas Mazza"]
|
|
12
|
-
s.date = %q{2010-08-
|
|
12
|
+
s.date = %q{2010-08-09}
|
|
13
13
|
s.default_executable = %q{showtime}
|
|
14
14
|
s.description = %q{Application generator for simple Sinatra apps.}
|
|
15
15
|
s.email = %q{luc4smazza@gmail.com}
|
|
@@ -49,9 +49,9 @@ Gem::Specification.new do |s|
|
|
|
49
49
|
s.rubygems_version = %q{1.3.7}
|
|
50
50
|
s.summary = %q{Simple Sinatra generator}
|
|
51
51
|
s.test_files = [
|
|
52
|
-
"spec/
|
|
53
|
-
"spec/
|
|
54
|
-
"spec/
|
|
52
|
+
"spec/generator_spec.rb",
|
|
53
|
+
"spec/helper_methods.rb",
|
|
54
|
+
"spec/spec_helper.rb"
|
|
55
55
|
]
|
|
56
56
|
|
|
57
57
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: showtime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 29
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.1.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Lucas Mazza
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-08-
|
|
18
|
+
date: 2010-08-09 00:00:00 -03:00
|
|
19
19
|
default_executable: showtime
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -118,6 +118,6 @@ signing_key:
|
|
|
118
118
|
specification_version: 3
|
|
119
119
|
summary: Simple Sinatra generator
|
|
120
120
|
test_files:
|
|
121
|
-
- spec/spec_helper.rb
|
|
122
121
|
- spec/generator_spec.rb
|
|
123
122
|
- spec/helper_methods.rb
|
|
123
|
+
- spec/spec_helper.rb
|