apache-config-generator 0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1 +1,3 @@
1
+ v0.1.1. Stupid bug in initial release.
2
+
1
3
  v0.1. Initial release, support for many of the Apache config basics.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{apache-config-generator}
5
- s.version = "0.1"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["John Bintz"]
@@ -44,7 +44,7 @@ module Apache
44
44
 
45
45
  # Block all .ht* files
46
46
  def no_htfiles!
47
- files_match %{^\.ht} do
47
+ files_match %r{^\.ht} do
48
48
  deny_from_all
49
49
  satisfy :all
50
50
  end
metadata CHANGED
@@ -5,7 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- version: "0.1"
8
+ - 1
9
+ version: 0.1.1
9
10
  platform: ruby
10
11
  authors:
11
12
  - John Bintz