fivepointssolutions-serve 0.9.13 → 0.9.14

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ begin
4
4
  s.name = "serve"
5
5
  s.summary = "Serve is a small Ruby script that makes it easy to start up a WEBrick server in any directory. Serve is ideal for HTML prototyping and simple file sharing. If the haml, redcloth, and bluecloth gems are installed serve can handle Haml, Sass, Textile, and Markdown (in addition to HTML)."
6
6
  s.email = "me@johnwlong.com"
7
- s.files = FileList["[A-Z]*", "{bin,lib,rails,spec}/**/*"]
7
+ s.files = FileList["[A-Z]*", "{bin,lib,rails,spec}/**/*"].exclude("tmp,**/tmp")
8
8
  s.homepage = "http://github.com/jlong/serve"
9
9
  s.description = s.summary
10
10
  s.authors = ["John W. Long"]
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 9
3
- :patch: 13
3
+ :patch: 14
4
4
  :major: 0
@@ -38,7 +38,7 @@ module Serve #:nodoc:
38
38
  def install_view_helpers(context)
39
39
  view_helpers_file_path = @root_path + '/view_helpers.rb'
40
40
  if File.file?(view_helpers_file_path)
41
- context.metaclass.module_eval(File.read(view_helpers_file_path) + "\ninclude ViewHelpers")
41
+ context.metaclass.module_eval(File.read(view_helpers_file_path) + "\ninclude ViewHelpers", view_helpers_file_path)
42
42
  end
43
43
  end
44
44
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fivepointssolutions-serve
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.13
4
+ version: 0.9.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - John W. Long
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-01-19 00:00:00 -08:00
12
+ date: 2009-01-22 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies: []
15
15