fivepointssolutions-serve 0.9.12 → 0.9.13

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,4 +1,10 @@
1
- == 0.9.11 (??)
1
+ == 0.9.13
2
+ * Fixed broken regex that kept paths ending with '/' from working [aiwilliams]
3
+
4
+ == 0.9.12
5
+ * Removed stuff that wasn't necessary for packaging gem with jeweler [aiwilliams]
6
+
7
+ == 0.9.11
2
8
  * Made to work as a Rails GemPlugin [aiwilliams]
3
9
  * Caches responses using the Radiant ResponseCache when used as a Rails plugin [aiwilliams]
4
10
  * Managing gem using jeweler [aiwilliams]
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 9
3
- :patch: 12
3
+ :patch: 13
4
4
  :major: 0
@@ -9,7 +9,7 @@ module Serve
9
9
  return nil if path.nil?
10
10
  path = File.join(path) # path may be array
11
11
  return nil if path =~ /\.\./
12
- path = path.sub(/\/\A/, '')
12
+ path = path.sub(%r{/\Z}, '')
13
13
  if path =~ /\.css\Z/ && !File.file?(File.join(root, path))
14
14
  sass_path = path.sub(/\.css\Z/, '.sass')
15
15
  sass_path if File.file?(File.join(root, sass_path))
data/lib/serve/version.rb CHANGED
@@ -2,7 +2,7 @@ module Serve #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 9
5
- TINY = 11
5
+ TINY = 13
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
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.12
4
+ version: 0.9.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - John W. Long