rujitsu 0.3 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ = Version 0.3.1 (2009-12-04)
2
+
3
+ rujitsu/grammar now raises the proper rule (one of the most important updates ever)
4
+
1
5
  = Version 0.3 (2009-11-30)
2
6
 
3
7
  Added Object#in? to test for inclusion within a container (easier to use syntax than Array#include?)
data/Manifest CHANGED
@@ -11,6 +11,7 @@ lib/rujitsu/numeric.rb
11
11
  lib/rujitsu/object.rb
12
12
  lib/rujitsu/range.rb
13
13
  lib/rujitsu/string.rb
14
+ rujitsu.gemspec
14
15
  spec/fixnum_spec.rb
15
16
  spec/numeric_spec.rb
16
17
  spec/object_spec.rb
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('rujitsu', '0.3') do | config |
5
+ Echoe.new('rujitsu', '0.3.1') do | config |
6
6
  config.description = 'Various helper methods to smooth over Ruby development'
7
7
  config.url = 'http://github.com/rahoub/rujitsu'
8
8
  config.author = 'Brightbox Systems Ltd'
@@ -4,7 +4,7 @@ module Spec
4
4
  class GrammarException < Exception; end
5
5
 
6
6
  def should_recieve(sym, opts={}, &block)
7
- raise GrammarException, "Oi! i before except after c."
7
+ raise GrammarException, "Oi! i before e except after c."
8
8
  end
9
9
  end
10
10
  end
data/rujitsu.gemspec CHANGED
@@ -2,15 +2,15 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rujitsu}
5
- s.version = "0.3"
5
+ s.version = "0.3.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 = ["Brightbox Systems Ltd"]
9
- s.date = %q{2009-11-30}
9
+ s.date = %q{2009-12-04}
10
10
  s.description = %q{Various helper methods to smooth over Ruby development}
11
11
  s.email = %q{hello@brightbox.co.uk}
12
12
  s.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "lib/rujitsu.rb", "lib/rujitsu/all.rb", "lib/rujitsu/fixnum.rb", "lib/rujitsu/grammar.rb", "lib/rujitsu/inspect.rb", "lib/rujitsu/numeric.rb", "lib/rujitsu/object.rb", "lib/rujitsu/range.rb", "lib/rujitsu/string.rb", "tasks/rspec.rake"]
13
- s.files = ["CHANGELOG", "Manifest", "README.rdoc", "Rakefile", "lib/rujitsu.rb", "lib/rujitsu/all.rb", "lib/rujitsu/fixnum.rb", "lib/rujitsu/grammar.rb", "lib/rujitsu/inspect.rb", "lib/rujitsu/numeric.rb", "lib/rujitsu/object.rb", "lib/rujitsu/range.rb", "lib/rujitsu/string.rb", "spec/fixnum_spec.rb", "spec/numeric_spec.rb", "spec/object_spec.rb", "spec/range_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/string_spec.rb", "tasks/rspec.rake", "rujitsu.gemspec"]
13
+ s.files = ["CHANGELOG", "Manifest", "README.rdoc", "Rakefile", "lib/rujitsu.rb", "lib/rujitsu/all.rb", "lib/rujitsu/fixnum.rb", "lib/rujitsu/grammar.rb", "lib/rujitsu/inspect.rb", "lib/rujitsu/numeric.rb", "lib/rujitsu/object.rb", "lib/rujitsu/range.rb", "lib/rujitsu/string.rb", "rujitsu.gemspec", "spec/fixnum_spec.rb", "spec/numeric_spec.rb", "spec/object_spec.rb", "spec/range_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/string_spec.rb", "tasks/rspec.rake"]
14
14
  s.homepage = %q{http://github.com/rahoub/rujitsu}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rujitsu", "--main", "README.rdoc"]
16
16
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rujitsu
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
  - Brightbox Systems Ltd
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-30 00:00:00 +00:00
12
+ date: 2009-12-04 00:00:00 +00:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -46,6 +46,7 @@ files:
46
46
  - lib/rujitsu/object.rb
47
47
  - lib/rujitsu/range.rb
48
48
  - lib/rujitsu/string.rb
49
+ - rujitsu.gemspec
49
50
  - spec/fixnum_spec.rb
50
51
  - spec/numeric_spec.rb
51
52
  - spec/object_spec.rb
@@ -54,7 +55,6 @@ files:
54
55
  - spec/spec_helper.rb
55
56
  - spec/string_spec.rb
56
57
  - tasks/rspec.rake
57
- - rujitsu.gemspec
58
58
  has_rdoc: true
59
59
  homepage: http://github.com/rahoub/rujitsu
60
60
  licenses: []