tuersteher 0.0.8 → 0.1.0
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/VERSION +1 -1
- data/lib/tuersteher.rb +3 -0
- data/tuersteher.gemspec +3 -3
- metadata +12 -5
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0
|
|
1
|
+
0.1.0
|
data/lib/tuersteher.rb
CHANGED
|
@@ -58,6 +58,7 @@ module Tuersteher
|
|
|
58
58
|
def read_rules
|
|
59
59
|
config_file = @rules_config_file || DEFAULT_RULES_CONFIG_FILE
|
|
60
60
|
rules_file = File.new config_file
|
|
61
|
+
@was_read = false
|
|
61
62
|
if @last_mtime.nil? || rules_file.mtime > @last_mtime
|
|
62
63
|
@last_mtime = rules_file.mtime
|
|
63
64
|
@path_rules = []
|
|
@@ -68,6 +69,8 @@ module Tuersteher
|
|
|
68
69
|
end
|
|
69
70
|
rules_file.close
|
|
70
71
|
@was_read = true
|
|
72
|
+
rescue => ex
|
|
73
|
+
Tuersteher::TLogger.logger.error "Tuersteher::AccessRulesStorage - Error in rules: #{ex.message}\n\t"+ex.backtrace.join("\n\t")
|
|
71
74
|
end
|
|
72
75
|
|
|
73
76
|
# definiert HTTP-Pfad-basierende Zugriffsregel
|
data/tuersteher.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{tuersteher}
|
|
8
|
-
s.version = "0.0
|
|
8
|
+
s.version = "0.1.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Bernd Ledig"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-05-29}
|
|
13
13
|
s.description = %q{Security-Layer for Rails-Application acts like a firewall.}
|
|
14
14
|
s.email = %q{bernd@ledig.info}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -31,7 +31,7 @@ Gem::Specification.new do |s|
|
|
|
31
31
|
s.homepage = %q{http://github.com/bledig/tuersteher}
|
|
32
32
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
33
33
|
s.require_paths = ["lib"]
|
|
34
|
-
s.rubygems_version = %q{1.3.
|
|
34
|
+
s.rubygems_version = %q{1.3.6}
|
|
35
35
|
s.summary = %q{Security-Layer for Rails-Application}
|
|
36
36
|
|
|
37
37
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tuersteher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 1
|
|
8
|
+
- 0
|
|
9
|
+
version: 0.1.0
|
|
5
10
|
platform: ruby
|
|
6
11
|
authors:
|
|
7
12
|
- Bernd Ledig
|
|
@@ -9,7 +14,7 @@ autorequire:
|
|
|
9
14
|
bindir: bin
|
|
10
15
|
cert_chain: []
|
|
11
16
|
|
|
12
|
-
date: 2010-
|
|
17
|
+
date: 2010-05-29 00:00:00 +02:00
|
|
13
18
|
default_executable:
|
|
14
19
|
dependencies: []
|
|
15
20
|
|
|
@@ -46,18 +51,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
46
51
|
requirements:
|
|
47
52
|
- - ">="
|
|
48
53
|
- !ruby/object:Gem::Version
|
|
54
|
+
segments:
|
|
55
|
+
- 0
|
|
49
56
|
version: "0"
|
|
50
|
-
version:
|
|
51
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
58
|
requirements:
|
|
53
59
|
- - ">="
|
|
54
60
|
- !ruby/object:Gem::Version
|
|
61
|
+
segments:
|
|
62
|
+
- 0
|
|
55
63
|
version: "0"
|
|
56
|
-
version:
|
|
57
64
|
requirements: []
|
|
58
65
|
|
|
59
66
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 1.3.
|
|
67
|
+
rubygems_version: 1.3.6
|
|
61
68
|
signing_key:
|
|
62
69
|
specification_version: 3
|
|
63
70
|
summary: Security-Layer for Rails-Application
|