not_naughty 0.3 → 0.3.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.
Files changed (4) hide show
  1. data/CHANGELOG +3 -0
  2. data/Rakefile +2 -2
  3. data/lib/not_naughty.rb +1 -0
  4. metadata +3 -2
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ === 0.3.1 (2008-02-14)
2
+ * fixed missing require
3
+
1
4
  === 0.3 (2008-02-09)
2
5
 
3
6
  * renamed to NotNaughty - The Validation Framework
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ include FileUtils
9
9
  # Configuration
10
10
  ##############################################################################
11
11
  NAME = "not_naughty"
12
- VERS = "0.3"
12
+ VERS = "0.3.1"
13
13
  CLEAN.include ["**/.*.sw?", "pkg/*", ".config", "doc/*", "coverage/*"]
14
14
  RDOC_OPTS = [
15
15
  "--quiet",
@@ -39,7 +39,7 @@ task :doc_rforge => [:doc]
39
39
 
40
40
  desc "Update docs and upload to rubyforge.org"
41
41
  task :doc_rforge do
42
- # sh %{scp -r doc/rdoc/* boof@rubyforge.org:/var/www/gforge-projects/not-naughty}
42
+ sh %{scp -r doc/rdoc/* boof@rubyforge.org:/var/www/gforge-projects/not-naughty}
43
43
  end
44
44
 
45
45
  ##############################################################################
data/lib/not_naughty.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require 'delegate'
2
+ require 'forwardable'
2
3
  require 'observer'
3
4
 
4
5
  require 'rubygems'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: not_naughty
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.3"
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Florian A\xC3\x9Fmann"
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-02-13 00:00:00 +01:00
12
+ date: 2008-02-14 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -27,6 +27,7 @@ files:
27
27
  - COPYING
28
28
  - README
29
29
  - Rakefile
30
+ - doc/rdoc
30
31
  - spec/builder_spec.rb
31
32
  - spec/errors_spec.rb
32
33
  - spec/not_naughty_spec.rb