tempatra 0.0.3 → 0.0.4

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.md CHANGED
@@ -22,11 +22,11 @@ Move into your new application:
22
22
 
23
23
  Run your application:
24
24
 
25
- $ thin start -p 4567 -R config.ru
25
+ $ shotgun --server=thin -p 4567 config.ru
26
26
 
27
27
  Then go to [http://localhost:4567/](http://localhost:4567/) with your browser.
28
28
 
29
- While you develop, continuously compile your Sass stylesheets with Compass (in another terminal):
29
+ You can continuously compile your Sass stylesheets with Compass (in another terminal):
30
30
 
31
31
  $ compass --watch
32
32
 
@@ -61,6 +61,13 @@ Inspiration
61
61
  Aaron Quint's [sinatra-gen](http://github.com/quirkey/sinatra-gen) is a Sinatra application generator that provides many options.
62
62
 
63
63
 
64
+ Authors
65
+ -------
66
+
67
+ Stewart Laufer (theIV)
68
+ Olivier Lauzon (olauzon)
69
+
70
+
64
71
  Copyright
65
72
  ---------
66
73
 
data/Rakefile CHANGED
@@ -22,13 +22,15 @@ begin
22
22
  gem.add_dependency('sinatra', '>= 0.9.4')
23
23
  gem.add_dependency('thin', '>= 1.2.3')
24
24
  gem.add_dependency('webrat', '>= 0.5.3')
25
+ gem.add_dependency('shotgun', '>= 0.4')
25
26
 
26
27
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
27
28
  gem.files = FileList[ 'app_generators/**/*',
28
29
  'bin/*',
29
30
  'lib/**/*.rb',
30
31
  '[A-Z]*',
31
- 'spec/**/*'].to_a
32
+ 'spec/**/*'].to_a.reject { |f| f =~ /^spec\/tmp/ }
33
+ gem.test_files = FileList['spec/**/*'].to_a.reject { |f| f =~ /^spec\/tmp/ }
32
34
  end
33
35
  rescue LoadError
34
36
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -2,13 +2,13 @@
2
2
 
3
3
  ## Usage ##
4
4
 
5
- To run your application:
5
+ Run your application:
6
6
 
7
- $ thin start -p 4567 -R config.ru
7
+ $ shotgun --server=thin -p 4567 config.ru
8
8
 
9
- Then go to http://localhost:4567/ with your browser.
9
+ Then go to [http://localhost:4567/](http://localhost:4567/) with your browser.
10
10
 
11
- While you develop, continuously compile your Sass stylesheets with Compass (in another terminal):
11
+ You can continuously compile your Sass stylesheets with Compass (in another terminal):
12
12
 
13
13
  $ compass --watch
14
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tempatra
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Olivier Lauzon
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-29 00:00:00 -05:00
12
+ date: 2009-12-04 00:00:00 -05:00
13
13
  default_executable: tempatra
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -122,6 +122,16 @@ dependencies:
122
122
  - !ruby/object:Gem::Version
123
123
  version: 0.5.3
124
124
  version:
125
+ - !ruby/object:Gem::Dependency
126
+ name: shotgun
127
+ type: :runtime
128
+ version_requirement:
129
+ version_requirements: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: "0.4"
134
+ version:
125
135
  description: A Sinatra application generator using Blueprint CSS, jQuery, Haml, Sass, Compass, RSpec, Cucumber, and Webrat.
126
136
  email: olauzon@gmail.com
127
137
  executables:
@@ -198,5 +208,7 @@ signing_key:
198
208
  specification_version: 3
199
209
  summary: A RubiGen based Sinatra application generator.
200
210
  test_files:
211
+ - spec/rcov.opts
212
+ - spec/spec.opts
201
213
  - spec/spec_helper.rb
202
214
  - spec/tempatra_spec.rb