sandboxed_erb 0.4.0 → 0.4.1

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 CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.1
@@ -76,7 +76,7 @@ class Module
76
76
  clz = self.superclass
77
77
  while !clz.nil?
78
78
  unless clz == Object
79
- puts "#{self.name}: #{clz.name}: #{clz.public_instance_methods(false).inspect}"
79
+ #puts "#{self.name}: #{clz.name}: #{clz.public_instance_methods(false).inspect}"
80
80
  __the_methods_to_check += clz.public_instance_methods(false)
81
81
  end
82
82
  clz = clz.superclass
@@ -86,7 +86,7 @@ class Module
86
86
  #we include any mixins
87
87
  for m in self.included_modules
88
88
  if allowed_mixins.include?(m)
89
- puts "#{self.name}: #{m.name}: #{m.public_instance_methods(false).inspect}"
89
+ #puts "#{self.name}: #{m.name}: #{m.public_instance_methods(false).inspect}"
90
90
  __the_methods_to_check += m.public_instance_methods(false)
91
91
  end
92
92
  end
@@ -107,7 +107,7 @@ class Module
107
107
  end
108
108
  end
109
109
 
110
- puts "#{self.name}: #{__the_methods_to_check.inspect}"
110
+ #puts "#{self.name}: #{__the_methods_to_check.inspect}"
111
111
 
112
112
  sandboxed_methods(*__the_methods_to_check)
113
113
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sandboxed_erb}
8
- s.version = "0.4.0"
8
+ s.version = "0.4.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["MarkPent"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sandboxed_erb
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 0
10
- version: 0.4.0
9
+ - 1
10
+ version: 0.4.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - MarkPent