ianwhite-pickle 0.1.11 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,10 @@
1
+ == 0.1.12 - 7 Apr 2009
2
+
3
+ * 2 minor enhancements
4
+ * rationalised Rakefile
5
+ * update World extensions for latest cucumber changes
6
+
7
+
1
8
  == 0.1.11 - 22 Feb 2009
2
9
 
3
10
  * 2 minor enhancements
data/README.rdoc CHANGED
@@ -7,6 +7,10 @@ References to the models are stored, not necessarily for the purpose of checking
7
7
  (although you could use it for that), but for enabling easy reference to urls, and for
8
8
  building complex givens which require a bunch of models collaborating
9
9
 
10
+ == CI
11
+
12
+ It's tested against all stable branches of 2.x rails, and edge, with the latest versions of rspec, cucumber, factory_girl, machinist.
13
+
10
14
  == Install
11
15
 
12
16
  Install pickle either as a rails plugin, or a gem
data/Todo.txt CHANGED
@@ -1,2 +1,4 @@
1
+ * Add email_for (same concept as path_to)
2
+ * fix problem with save_and_open_emails
1
3
  * Translations
2
4
  * Investigate using Treetop for pre-parsing
@@ -5,11 +5,7 @@ require 'pickle/email/parser'
5
5
  # add email parser expressions
6
6
  Pickle::Parser.send :include, Pickle::Email::Parser
7
7
 
8
- # make world pickle/email aware
9
- World do |world|
10
- world.extend Pickle::Email
11
- world
12
- end
8
+ World(Pickle::Email)
13
9
 
14
10
  # shortcuts for use in step regexps
15
11
  class << self
@@ -2,7 +2,4 @@ require 'pickle'
2
2
  require 'pickle/path'
3
3
 
4
4
  # make world pickle/path aware
5
- World do |world|
6
- world.extend Pickle::Path
7
- world
8
- end
5
+ World(Pickle::Path)
@@ -2,7 +2,7 @@ module Pickle
2
2
  module Version
3
3
  Major = 0
4
4
  Minor = 1
5
- Tiny = 11
5
+ Tiny = 12
6
6
 
7
7
  String = [Major, Minor, Tiny].join('.')
8
8
  end
data/lib/pickle/world.rb CHANGED
@@ -1,10 +1,7 @@
1
1
  require 'pickle'
2
2
 
3
3
  # make cucumber world pickle aware
4
- World do |world|
5
- world.extend Pickle::Session
6
- world
7
- end
4
+ World(Pickle::Session)
8
5
 
9
6
  # shortcuts to regexps for use in step definition regexps
10
7
  class << self
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ianwhite-pickle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian White
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-02-22 00:00:00 -08:00
12
+ date: 2009-04-07 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15