showtime 0.1.0 → 0.1.1

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.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION +1 -1
  3. data/showtime.gemspec +70 -0
  4. metadata +10 -9
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ begin
16
16
  gem.bindir = "bin"
17
17
  gem.executables = %w(showtime)
18
18
  gem.test_files.include 'spec/**/*'
19
- gem.add_dependency "thor", "0.13.8"
19
+ gem.add_dependency "thor", ">= 0.14.0"
20
20
  end
21
21
  Jeweler::GemcutterTasks.new
22
22
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,70 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{showtime}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Lucas Mazza"]
12
+ s.date = %q{2010-07-27}
13
+ s.default_executable = %q{showtime}
14
+ s.description = %q{Application generator for simple Sinatra apps.}
15
+ s.email = %q{luc4smazza@gmail.com}
16
+ s.executables = ["showtime"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.markdown",
20
+ "TODO"
21
+ ]
22
+ s.files = [
23
+ ".gitignore",
24
+ "LICENSE",
25
+ "README.markdown",
26
+ "Rakefile",
27
+ "TODO",
28
+ "VERSION",
29
+ "bin/showtime",
30
+ "lib/showtime.rb",
31
+ "lib/showtime/generator.rb",
32
+ "lib/showtime/templates/.gems",
33
+ "lib/showtime/templates/Rakefile",
34
+ "lib/showtime/templates/application.rb",
35
+ "lib/showtime/templates/config.ru",
36
+ "lib/showtime/templates/spec/application_spec.rb",
37
+ "lib/showtime/templates/spec/spec_helper.rb",
38
+ "showtime.gemspec",
39
+ "spec/generator_spec.rb",
40
+ "spec/helper_methods.rb",
41
+ "spec/spec_helper.rb"
42
+ ]
43
+ s.homepage = %q{http://github.com/lucasmazza/showtime}
44
+ s.rdoc_options = ["--charset=UTF-8"]
45
+ s.require_paths = ["lib"]
46
+ s.rubygems_version = %q{1.3.7}
47
+ s.summary = %q{Simple Sinatra generator}
48
+ s.test_files = [
49
+ "spec/generator_spec.rb",
50
+ "spec/helper_methods.rb",
51
+ "spec/spec_helper.rb"
52
+ ]
53
+
54
+ if s.respond_to? :specification_version then
55
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
56
+ s.specification_version = 3
57
+
58
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
59
+ s.add_development_dependency(%q<rspec>, [">= 1.3.0"])
60
+ s.add_runtime_dependency(%q<thor>, [">= 0.14.0"])
61
+ else
62
+ s.add_dependency(%q<rspec>, [">= 1.3.0"])
63
+ s.add_dependency(%q<thor>, [">= 0.14.0"])
64
+ end
65
+ else
66
+ s.add_dependency(%q<rspec>, [">= 1.3.0"])
67
+ s.add_dependency(%q<thor>, [">= 0.14.0"])
68
+ end
69
+ end
70
+
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: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
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-07-21 00:00:00 -03:00
18
+ date: 2010-07-27 00:00:00 -03:00
19
19
  default_executable: showtime
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -40,14 +40,14 @@ dependencies:
40
40
  requirement: &id002 !ruby/object:Gem::Requirement
41
41
  none: false
42
42
  requirements:
43
- - - "="
43
+ - - ">="
44
44
  - !ruby/object:Gem::Version
45
- hash: 59
45
+ hash: 39
46
46
  segments:
47
47
  - 0
48
- - 13
49
- - 8
50
- version: 0.13.8
48
+ - 14
49
+ - 0
50
+ version: 0.14.0
51
51
  type: :runtime
52
52
  version_requirements: *id002
53
53
  description: Application generator for simple Sinatra apps.
@@ -76,6 +76,7 @@ files:
76
76
  - lib/showtime/templates/config.ru
77
77
  - lib/showtime/templates/spec/application_spec.rb
78
78
  - lib/showtime/templates/spec/spec_helper.rb
79
+ - showtime.gemspec
79
80
  - spec/generator_spec.rb
80
81
  - spec/helper_methods.rb
81
82
  - spec/spec_helper.rb