gems 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -32,54 +32,55 @@ Usage Examples
32
32
  puts Gems.downloads 'coulda', '0.6.3'
33
33
 
34
34
  # Returns an array of gem dependency details for all versions of given gems
35
- puts Gems.dependencies ['rails', 'thor'] [pending]
35
+ puts Gems.dependencies ['rails', 'thor']
36
36
 
37
37
  # The following method requires password authentication
38
- Gems.configure do |config| [pending]
39
- config.username 'nick@gemcutter.org'
40
- config.password 'schwwwwing'
38
+ Gems.configure do |config|
39
+ config.format = :xml
40
+ config.username = 'nick@gemcutter.org' [TODO]
41
+ config.password = 'schwwwwing' [TODO]
41
42
  end
42
43
 
43
44
  # Retrieve your API key using HTTP basic auth
44
- Gems.api_key [pending]
45
+ Gems.api_key [TODO]
45
46
 
46
47
  # The following methods require authentication
47
- Gems.configure do |config| [pending]
48
+ Gems.configure do |config| [TODO]
48
49
  config.key '701243f217cdf23b1370c7b66b65ca97'
49
50
  end
50
51
 
51
52
  # List all gems that you own
52
- puts Gems.gems [pending]
53
+ puts Gems.gems [TODO]
53
54
 
54
55
  # View all owners of a gem that you own
55
- puts Gems.owners 'gemcutter' [pending]
56
+ puts Gems.owners 'gemcutter' [TODO]
56
57
 
57
58
  # Add an owner to a RubyGem you own, giving that user permission to manage it
58
- puts Gems.add_owner 'josh@technicalpickles.com', 'gemcutter' [pending]
59
+ puts Gems.add_owner 'josh@technicalpickles.com', 'gemcutter' [TODO]
59
60
 
60
61
  # Remove a user's permission to manage a RubyGem you own
61
- puts Gems.remove_owner 'josh@technicalpickles.com', 'gemcutter' [pending]
62
+ puts Gems.remove_owner 'josh@technicalpickles.com', 'gemcutter' [TODO]
62
63
 
63
64
  # List the webhooks registered under your account
64
- puts Gems.web_hooks [pending]
65
+ puts Gems.web_hooks [TODO]
65
66
 
66
67
  # Add a webhook
67
- puts Gems.add_web_hook 'rails', 'http://example.com' [pending]
68
+ puts Gems.add_web_hook 'rails', 'http://example.com' [TODO]
68
69
 
69
70
  # Remove a webhook
70
- puts Gems.remove_web_hook 'rails', 'http://example.com' [pending]
71
+ puts Gems.remove_web_hook 'rails', 'http://example.com' [TODO]
71
72
 
72
73
  # Test fire a webhook.
73
- puts Gems.fire_web_hook 'rails', 'http://example.com' [pending]
74
+ puts Gems.fire_web_hook 'rails', 'http://example.com' [TODO]
74
75
 
75
76
  # Submit a gem to RubyGems.org
76
- puts Gems.push File.new 'gemcutter-0.2.1.gem' [pending]
77
+ puts Gems.push File.new 'gemcutter-0.2.1.gem' [TODO]
77
78
 
78
79
  # Remove a gem from RubyGems.org's index
79
- puts Gems.yank 'bills', '0.0.1', :platform => 'x86-darwin-10' [pending]
80
+ puts Gems.yank 'bills', '0.0.1', :platform => 'x86-darwin-10' [TODO]
80
81
 
81
82
  # Update a previously yanked gem back into RubyGems.org's index
82
- puts Gems.unyank 'bills', '0.0.1', :platform => 'x86-darwin-10' [pending]
83
+ puts Gems.unyank 'bills', '0.0.1', :platform => 'x86-darwin-10' [TODO]
83
84
 
84
85
  Contributing
85
86
  ------------
@@ -1,20 +1,24 @@
1
1
  require 'gems/client'
2
+ require 'gems/configuration'
2
3
 
3
4
  module Gems
4
- # Alias for Gems::Client.new
5
- #
6
- # @return [Gems::Client]
7
- def self.new
8
- Gems::Client.new
9
- end
5
+ extend Configuration
6
+ class << self
7
+ # Alias for Gems::Client.new
8
+ #
9
+ # @return [Gems::Client]
10
+ def new(options={})
11
+ Gems::Client.new(options)
12
+ end
10
13
 
11
- # Delegate to Gems::Client
12
- def self.method_missing(method, *args, &block)
13
- return super unless new.respond_to?(method)
14
- new.send(method, *args, &block)
15
- end
14
+ # Delegate to Gems::Client
15
+ def method_missing(method, *args, &block)
16
+ return super unless new.respond_to?(method)
17
+ new.send(method, *args, &block)
18
+ end
16
19
 
17
- def self.respond_to?(method, include_private=false)
18
- new.respond_to?(method, include_private) || super(method, include_private)
20
+ def respond_to?(method, include_private=false)
21
+ new.respond_to?(method, include_private) || super(method, include_private)
22
+ end
19
23
  end
20
24
  end
@@ -1,3 +1,4 @@
1
+ require 'gems/configuration'
1
2
  require 'gems/connection'
2
3
  require 'gems/request'
3
4
 
@@ -5,6 +6,14 @@ module Gems
5
6
  class Client
6
7
  include Gems::Connection
7
8
  include Gems::Request
9
+ attr_accessor *Configuration::VALID_OPTIONS_KEYS
10
+
11
+ def initialize(options={})
12
+ options = Gems.options.merge(options)
13
+ Configuration::VALID_OPTIONS_KEYS.each do |key|
14
+ send("#{key}=", options[key])
15
+ end
16
+ end
8
17
 
9
18
  # Returns some basic information about the given gem
10
19
  #
@@ -14,7 +23,8 @@ module Gems
14
23
  # @example
15
24
  # Gems.info 'rails'
16
25
  def info(gem, options={})
17
- get("/api/v1/gems/#{gem}.json", options)
26
+ response = get("/api/v1/gems/#{gem}", options)
27
+ format.to_s.downcase == 'xml' ? response['rubygem'] : response
18
28
  end
19
29
 
20
30
  # Returns an array of active gems that match the query
@@ -25,7 +35,8 @@ module Gems
25
35
  # @example
26
36
  # Gems.search 'cucumber'
27
37
  def search(query, options={})
28
- get("/api/v1/search.json", options.merge(:query => query))
38
+ response = get("/api/v1/search", options.merge(:query => query))
39
+ format.to_s.downcase == 'xml' ? response['rubygems'] : response
29
40
  end
30
41
 
31
42
  # Returns an array of gem version details
@@ -36,7 +47,7 @@ module Gems
36
47
  # @example
37
48
  # Gems.versions 'coulda'
38
49
  def versions(gem, options={})
39
- get("/api/v1/versions/#{gem}.json", options)
50
+ get("/api/v1/versions/#{gem}", options, :json)
40
51
  end
41
52
 
42
53
  # Returns the number of downloads by day for a particular gem version
@@ -48,7 +59,7 @@ module Gems
48
59
  # @example
49
60
  # Gems.downloads 'coulda', '0.6.3'
50
61
  def downloads(gem, version, options={})
51
- get("/api/v1/versions/#{gem}-#{version}/downloads.json", options)
62
+ get("/api/v1/versions/#{gem}-#{version}/downloads", options, :json)
52
63
  end
53
64
 
54
65
  # Returns an array of hashes for all versions of given gems
@@ -0,0 +1,45 @@
1
+ require 'gems/version'
2
+
3
+ module Gems
4
+ module Configuration
5
+ # An array of valid keys in the options hash when configuring a {Gems::Client}
6
+ VALID_OPTIONS_KEYS = [
7
+ :format,
8
+ :user_agent,
9
+ ]
10
+
11
+ # The response format appended to the path if none is set
12
+ #
13
+ # @note JSON is preferred over XML because it is more concise and faster to parse.
14
+ DEFAULT_FORMAT = :json
15
+
16
+ # The value sent in the 'User-Agent' header if none is set
17
+ DEFAULT_USER_AGENT = "Gems #{Gems::VERSION}".freeze
18
+
19
+ attr_accessor *VALID_OPTIONS_KEYS
20
+
21
+ # When this module is extended, set all configuration options to their default values
22
+ def self.extended(base)
23
+ base.reset
24
+ end
25
+
26
+ # Convenience method to allow configuration options to be set in a block
27
+ def configure
28
+ yield self
29
+ end
30
+
31
+ # Create a hash of options and their values
32
+ def options
33
+ options = {}
34
+ VALID_OPTIONS_KEYS.each{|k| options[k] = send(k)}
35
+ options
36
+ end
37
+
38
+ # Reset all configuration options to defaults
39
+ def reset
40
+ self.format = DEFAULT_FORMAT
41
+ self.user_agent = DEFAULT_USER_AGENT
42
+ self
43
+ end
44
+ end
45
+ end
@@ -2,10 +2,11 @@ require 'faraday_middleware'
2
2
 
3
3
  module Gems
4
4
  module Connection
5
- private
6
-
7
- def connection(format=:json)
5
+ def connection(format=format)
8
6
  options = {
7
+ :headers => {
8
+ 'User-Agent' => user_agent,
9
+ },
9
10
  :ssl => {:verify => false},
10
11
  :url => 'https://rubygems.org',
11
12
  }
@@ -14,9 +15,14 @@ module Gems
14
15
  connection.use Faraday::Request::UrlEncoded
15
16
  connection.use Faraday::Response::RaiseError
16
17
  connection.use Faraday::Response::Mashify
17
- connection.use Faraday::Response::ParseXml if :xml == format
18
- connection.use Faraday::Response::ParseJson if :json == format
19
- connection.use Faraday::Response::ParseMarshal if :marshal == format
18
+ case format.to_sym
19
+ when :json
20
+ connection.use Faraday::Response::ParseJson
21
+ when :marshal
22
+ connection.use Faraday::Response::ParseMarshal
23
+ when :xml
24
+ connection.use Faraday::Response::ParseXml
25
+ end
20
26
  connection.adapter Faraday.default_adapter
21
27
  end
22
28
  end
@@ -1,6 +1,6 @@
1
1
  module Gems
2
2
  module Request
3
- def get(path, options={}, format=:json)
3
+ def get(path, options={}, format=format)
4
4
  request(:get, path, options, format)
5
5
  end
6
6
 
@@ -8,9 +8,18 @@ module Gems
8
8
 
9
9
  def request(method, path, options, format)
10
10
  response = connection(format).send(method) do |request|
11
- request.url(path, options)
11
+ request.url(formatted_path(path, format), options)
12
12
  end
13
13
  response.body
14
14
  end
15
+
16
+ def formatted_path(path, format)
17
+ case format.to_sym
18
+ when :json, :xml
19
+ [path, format].compact.join('.')
20
+ when :marshal
21
+ path
22
+ end
23
+ end
15
24
  end
16
25
  end
@@ -1,3 +1,3 @@
1
1
  module Gems
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -1 +1 @@
1
- [{"number":"0.6.3","built_at":"2010-12-23T05:00:00Z","prerelease":false,"downloads_count":598,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.6.1","built_at":"2010-11-20T05:00:00Z","prerelease":false,"downloads_count":267,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.6.0","built_at":"2010-10-29T04:00:00Z","prerelease":false,"downloads_count":262,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.5","built_at":"2010-09-10T04:00:00Z","prerelease":false,"downloads_count":211,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.3","built_at":"2009-12-08T05:00:00Z","prerelease":false,"downloads_count":722,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.2","built_at":"2009-12-06T05:00:00Z","prerelease":false,"downloads_count":369,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.1","built_at":"2009-12-04T05:00:00Z","prerelease":false,"downloads_count":347,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.0","built_at":"2009-12-04T05:00:00Z","prerelease":false,"downloads_count":347,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.7","built_at":"2009-11-30T05:00:00Z","prerelease":false,"downloads_count":347,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.6","built_at":"2009-11-30T05:00:00Z","prerelease":false,"downloads_count":344,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.5","built_at":"2009-11-26T05:00:00Z","prerelease":false,"downloads_count":349,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.4","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":348,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.3","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":345,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.2","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":345,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.1","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":349,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.0","built_at":"2009-11-23T05:00:00Z","prerelease":false,"downloads_count":351,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.3.1","built_at":"2009-09-23T07:00:00Z","prerelease":false,"downloads_count":380,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.3.0","built_at":"2009-09-23T07:00:00Z","prerelease":false,"downloads_count":328,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.2.0","built_at":"2009-09-12T07:00:00Z","prerelease":false,"downloads_count":329,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"}]
1
+ [{"number":"0.6.3","built_at":"2010-12-23T05:00:00Z","prerelease":false,"downloads_count":808,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.6.1","built_at":"2010-11-20T05:00:00Z","prerelease":false,"downloads_count":289,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.6.0","built_at":"2010-10-29T04:00:00Z","prerelease":false,"downloads_count":281,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.5","built_at":"2010-09-10T04:00:00Z","prerelease":false,"downloads_count":230,"summary":"Test::Unit-based acceptance testing DSL","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.3","built_at":"2009-12-08T05:00:00Z","prerelease":false,"downloads_count":741,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.2","built_at":"2009-12-06T05:00:00Z","prerelease":false,"downloads_count":387,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.1","built_at":"2009-12-04T05:00:00Z","prerelease":false,"downloads_count":365,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.5.0","built_at":"2009-12-04T05:00:00Z","prerelease":false,"downloads_count":365,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.7","built_at":"2009-11-30T05:00:00Z","prerelease":false,"downloads_count":365,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.6","built_at":"2009-11-30T05:00:00Z","prerelease":false,"downloads_count":362,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.5","built_at":"2009-11-26T05:00:00Z","prerelease":false,"downloads_count":367,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.4","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":366,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.3","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":363,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.2","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":363,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.1","built_at":"2009-11-24T05:00:00Z","prerelease":false,"downloads_count":367,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.4.0","built_at":"2009-11-23T05:00:00Z","prerelease":false,"downloads_count":369,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.3.1","built_at":"2009-09-23T07:00:00Z","prerelease":false,"downloads_count":398,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.3.0","built_at":"2009-09-23T07:00:00Z","prerelease":false,"downloads_count":346,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"},{"number":"0.2.0","built_at":"2009-09-12T07:00:00Z","prerelease":false,"downloads_count":347,"summary":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","description":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","authors":"Evan David Light","platform":"ruby"}]
@@ -1 +1 @@
1
- {"2011-11-01":0,"2011-11-02":0,"2011-11-03":0,"2011-11-04":0,"2011-11-05":0}
1
+ {"2011-03-27":0,"2011-03-28":1,"2011-03-29":0,"2011-03-30":1,"2011-03-31":0,"2011-04-01":0,"2011-04-02":0,"2011-04-03":1,"2011-04-04":1,"2011-04-05":1,"2011-04-06":4,"2011-04-07":5,"2011-04-08":1,"2011-04-09":2,"2011-04-10":4,"2011-04-11":3,"2011-04-12":8,"2011-04-13":5,"2011-04-14":14,"2011-04-15":1,"2011-04-16":1,"2011-04-17":4,"2011-04-18":1,"2011-04-19":15,"2011-04-20":4,"2011-04-21":16,"2011-04-22":6,"2011-04-23":5,"2011-04-24":4,"2011-04-25":9,"2011-04-26":7,"2011-04-27":11,"2011-04-28":12,"2011-04-29":6,"2011-04-30":7,"2011-05-01":5,"2011-05-02":9,"2011-05-03":11,"2011-05-04":6,"2011-05-05":6,"2011-05-06":4,"2011-05-07":5,"2011-05-08":8,"2011-05-09":11,"2011-05-10":5,"2011-05-11":2,"2011-05-12":1,"2011-05-13":3,"2011-05-14":8,"2011-05-15":10,"2011-05-16":7,"2011-05-17":4,"2011-05-18":2,"2011-05-19":5,"2011-05-20":2,"2011-05-21":5,"2011-05-22":7,"2011-05-23":8,"2011-05-24":11,"2011-05-25":9,"2011-05-26":3,"2011-05-27":0,"2011-05-28":2,"2011-05-29":2,"2011-05-30":7,"2011-05-31":2,"2011-06-01":7,"2011-06-02":4,"2011-06-03":5,"2011-06-04":1,"2011-06-05":25,"2011-06-06":6,"2011-06-07":9,"2011-06-08":13,"2011-06-09":1,"2011-06-10":4,"2011-06-11":5,"2011-06-12":10,"2011-06-13":3,"2011-06-14":10,"2011-06-15":10,"2011-06-16":27,"2011-06-17":4,"2011-06-18":0,"2011-06-19":8,"2011-06-20":14,"2011-06-21":23,"2011-06-22":8,"2011-06-23":0,"2011-06-24":0}
@@ -1 +1 @@
1
- {"dependencies":{"runtime":[{"name":"actionmailer","requirements":"= 3.0.7"},{"name":"actionpack","requirements":"= 3.0.7"},{"name":"activerecord","requirements":"= 3.0.7"},{"name":"activeresource","requirements":"= 3.0.7"},{"name":"activesupport","requirements":"= 3.0.7"},{"name":"bundler","requirements":"~> 1.0"},{"name":"railties","requirements":"= 3.0.7"}],"development":[]},"name":"rails","downloads":3997795,"info":"Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.","version_downloads":223775,"version":"3.0.7","homepage_uri":"http://www.rubyonrails.org","bug_tracker_uri":"http://rails.lighthouseapp.com/projects/8994-ruby-on-rails","source_code_uri":"http://github.com/rails/rails","gem_uri":"http://rubygems.org/gems/rails-3.0.7.gem","project_uri":"http://rubygems.org/gems/rails","authors":"David Heinemeier Hansson","mailing_list_uri":"http://groups.google.com/group/rubyonrails-talk","documentation_uri":"http://api.rubyonrails.org","wiki_uri":"http://wiki.rubyonrails.org"}
1
+ {"dependencies":{"runtime":[{"name":"actionmailer","requirements":"= 3.0.9"},{"name":"actionpack","requirements":"= 3.0.9"},{"name":"activerecord","requirements":"= 3.0.9"},{"name":"activeresource","requirements":"= 3.0.9"},{"name":"activesupport","requirements":"= 3.0.9"},{"name":"bundler","requirements":"~> 1.0"},{"name":"railties","requirements":"= 3.0.9"}],"development":[]},"name":"rails","downloads":4345784,"info":"Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.","version_downloads":41461,"version":"3.0.9","homepage_uri":"http://www.rubyonrails.org","bug_tracker_uri":"http://rails.lighthouseapp.com/projects/8994-ruby-on-rails","source_code_uri":"http://github.com/rails/rails","gem_uri":"http://rubygems.org/gems/rails-3.0.9.gem","project_uri":"http://rubygems.org/gems/rails","authors":"David Heinemeier Hansson","mailing_list_uri":"http://groups.google.com/group/rubyonrails-talk","documentation_uri":"http://api.rubyonrails.org","wiki_uri":"http://wiki.rubyonrails.org"}
@@ -4,23 +4,23 @@
4
4
  <runtime type="array">
5
5
  <dependency>
6
6
  <name>actionmailer</name>
7
- <requirements>= 3.0.7</requirements>
7
+ <requirements>= 3.0.9</requirements>
8
8
  </dependency>
9
9
  <dependency>
10
10
  <name>actionpack</name>
11
- <requirements>= 3.0.7</requirements>
11
+ <requirements>= 3.0.9</requirements>
12
12
  </dependency>
13
13
  <dependency>
14
14
  <name>activerecord</name>
15
- <requirements>= 3.0.7</requirements>
15
+ <requirements>= 3.0.9</requirements>
16
16
  </dependency>
17
17
  <dependency>
18
18
  <name>activeresource</name>
19
- <requirements>= 3.0.7</requirements>
19
+ <requirements>= 3.0.9</requirements>
20
20
  </dependency>
21
21
  <dependency>
22
22
  <name>activesupport</name>
23
- <requirements>= 3.0.7</requirements>
23
+ <requirements>= 3.0.9</requirements>
24
24
  </dependency>
25
25
  <dependency>
26
26
  <name>bundler</name>
@@ -28,20 +28,20 @@
28
28
  </dependency>
29
29
  <dependency>
30
30
  <name>railties</name>
31
- <requirements>= 3.0.7</requirements>
31
+ <requirements>= 3.0.9</requirements>
32
32
  </dependency>
33
33
  </runtime>
34
34
  <development type="array"/>
35
35
  </dependencies>
36
36
  <name>rails</name>
37
- <downloads type="integer">3997796</downloads>
37
+ <downloads type="integer">4345786</downloads>
38
38
  <info>Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.</info>
39
- <version-downloads type="integer">223776</version-downloads>
40
- <version>3.0.7</version>
39
+ <version-downloads type="integer">41462</version-downloads>
40
+ <version>3.0.9</version>
41
41
  <homepage-uri>http://www.rubyonrails.org</homepage-uri>
42
42
  <bug-tracker-uri>http://rails.lighthouseapp.com/projects/8994-ruby-on-rails</bug-tracker-uri>
43
43
  <source-code-uri>http://github.com/rails/rails</source-code-uri>
44
- <gem-uri>http://rubygems.org/gems/rails-3.0.7.gem</gem-uri>
44
+ <gem-uri>http://rubygems.org/gems/rails-3.0.9.gem</gem-uri>
45
45
  <project-uri>http://rubygems.org/gems/rails</project-uri>
46
46
  <authors>David Heinemeier Hansson</authors>
47
47
  <mailing-list-uri>http://groups.google.com/group/rubyonrails-talk</mailing-list-uri>
@@ -1 +1 @@
1
- [{"dependencies":{"runtime":[{"name":"builder","requirements":">= 2.1.2"},{"name":"diff-lcs","requirements":">= 1.1.2"},{"name":"gherkin","requirements":">= 2.3.8"},{"name":"json","requirements":">= 1.4.6"},{"name":"term-ansicolor","requirements":">= 1.0.5"}],"development":[{"name":"aruba","requirements":">= 0.3.6"},{"name":"capybara","requirements":">= 1.0.0.beta1"},{"name":"nokogiri","requirements":">= 1.4.4"},{"name":"prawn","requirements":"= 0.8.4"},{"name":"prawn-layout","requirements":"= 0.8.4"},{"name":"rack-test","requirements":">= 0.5.7"},{"name":"rake","requirements":">= 0.8.7"},{"name":"ramaze","requirements":">= 0"},{"name":"rspec","requirements":">= 2.6.0"},{"name":"simplecov","requirements":">= 0.4.1"},{"name":"sinatra","requirements":">= 1.2.0"},{"name":"spork","requirements":">= 0.8.4"},{"name":"syntax","requirements":">= 1.0.0"},{"name":"webrat","requirements":">= 0.7.3"}]},"name":"cucumber","downloads":689380,"info":"Behaviour Driven Development with elegance and joy","version_downloads":7727,"version":"0.10.3","homepage_uri":"http://cukes.info","bug_tracker_uri":"http://rspec.lighthouseapp.com/projects/16211/","source_code_uri":"http://github.com/aslakhellesoy/cucumber/tree/master","gem_uri":"http://rubygems.org/gems/cucumber-0.10.3.gem","project_uri":"http://rubygems.org/gems/cucumber","authors":"Aslak Helles\u00f8y","mailing_list_uri":"http://groups.google.com/group/cukes","documentation_uri":"http://cukes.info","wiki_uri":"http://wiki.github.com/aslakhellesoy/cucumber"},{"dependencies":{"runtime":[],"development":[{"name":"cucumber","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}]},"name":"culerity","downloads":378925,"info":"Culerity integrates Cucumber and Celerity in order to test your application's full stack.","version_downloads":142156,"version":"0.2.15","homepage_uri":"http://github.com/langalex/culerity","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/culerity-0.2.15.gem","project_uri":"http://rubygems.org/gems/culerity","authors":"Alexander Lang","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"capybara","requirements":">= 1.0.0.beta1"},{"name":"cucumber","requirements":">= 0.10.3"},{"name":"nokogiri","requirements":">= 1.4.4"},{"name":"rack-test","requirements":">= 0.5.7"}],"development":[{"name":"aruba","requirements":">= 0.3.6"},{"name":"bson_ext","requirements":">= 1.3.0"},{"name":"bundler","requirements":">= 1.0.13"},{"name":"database_cleaner","requirements":">= 0.6.7"},{"name":"factory_girl","requirements":">= 2.0.0.beta2"},{"name":"mongoid","requirements":">= 2.0.2"},{"name":"rails","requirements":">= 3.0.7"},{"name":"rake","requirements":"= 0.8.7"},{"name":"rspec","requirements":">= 2.6.0"},{"name":"rspec-rails","requirements":">= 2.6.0"},{"name":"sqlite3-ruby","requirements":">= 1.3.3"}]},"name":"cucumber-rails","downloads":383181,"info":"Cucumber Generators and Runtime for Rails","version_downloads":2084,"version":"0.5.1","homepage_uri":"http://cukes.info","bug_tracker_uri":"http://github.com/aslakhellesoy/cucumber-rails/issues","source_code_uri":"http://github.com/aslakhellesoy/cucumber-rails","gem_uri":"http://rubygems.org/gems/cucumber-rails-0.5.1.gem","project_uri":"http://rubygems.org/gems/cucumber-rails","authors":"Aslak Helles\u00f8y, Dennis Bl\u00f6te, Rob Holland","mailing_list_uri":"http://groups.google.com/group/cukes","documentation_uri":"http://cukes.info/","wiki_uri":"http://wiki.github.com/aslakhellesoy/cucumber-rails"},{"dependencies":{"runtime":[{"name":"builder","requirements":">= 2.1.2"}],"development":[{"name":"rubyforge","requirements":">= 2.0.4"}]},"name":"ci_reporter","downloads":95813,"info":"CI::Reporter is an add-on to Test::Unit, RSpec and Cucumber that allows you to generate XML reports of your test, spec and/or feature runs. The resulting files can be read by a continuous integration system that understands Ant's JUnit report XML format, thus allowing your CI system to track test/spec successes and failures.","version_downloads":32014,"version":"1.6.4","homepage_uri":"http://caldersphere.rubyforge.org/ci_reporter","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/ci_reporter-1.6.4.gem","project_uri":"http://rubygems.org/gems/ci_reporter","authors":"Nick Sieger","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"rspec","requirements":"~> 2.0"}],"development":[]},"name":"email_spec","downloads":94787,"info":"Easily test email in rspec and cucumber","version_downloads":17336,"version":"1.1.1","homepage_uri":"http://github.com/bmabey/email-spec/","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/email_spec-1.1.1.gem","project_uri":"http://rubygems.org/gems/email_spec","authors":"Ben Mabey, Aaron Gibralter, Mischa Fierer","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.8"},{"name":"rake","requirements":">= 0"}],"development":[{"name":"bundler","requirements":">= 0"},{"name":"capybara","requirements":">= 0"},{"name":"cucumber-rails","requirements":">= 0.3.2"},{"name":"database_cleaner","requirements":">= 0"},{"name":"factory_girl","requirements":">= 0"},{"name":"git","requirements":">= 0"},{"name":"machinist","requirements":">= 0"},{"name":"rack","requirements":"~> 1.2.1"},{"name":"rails","requirements":"~> 3.0.5"},{"name":"rcov","requirements":">= 0"},{"name":"rspec-rails","requirements":"~> 2.5.0"},{"name":"sqlite3-ruby","requirements":">= 0"},{"name":"yard","requirements":">= 0"}]},"name":"pickle","downloads":87467,"info":"Easy model creation and reference in your cucumber features","version_downloads":7556,"version":"0.4.7","homepage_uri":"http://github.com/ianwhite/pickle","bug_tracker_uri":"http://ianwhite.lighthouseapp.com/projects/25941-pickle","source_code_uri":"http://github.com/ianwhite/pickle","gem_uri":"http://rubygems.org/gems/pickle-0.4.7.gem","project_uri":"http://rubygems.org/gems/pickle","authors":"Ian White","mailing_list_uri":"","documentation_uri":"http://ianwhite.github.com/pickle","wiki_uri":""},{"dependencies":{"runtime":[],"development":[{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"ZenTest","requirements":">= 0"}]},"name":"autotest-growl","downloads":70218,"info":"This gem aims to improve support for Growl notifications by autotest.","version_downloads":29503,"version":"0.2.9","homepage_uri":"http://www.bitcetera.com/products/autotest-growl","bug_tracker_uri":"https://forge.bitcetera.com/projects/show/autotest-growl","source_code_uri":"http://github.com/svoop/autotest-growl/tree/master","gem_uri":"http://rubygems.org/gems/autotest-growl-0.2.9.gem","project_uri":"http://rubygems.org/gems/autotest-growl","authors":"Sven Schwyn","mailing_list_uri":"https://forge.bitcetera.com/projects/autotest-growl/boards","documentation_uri":"http://www.bitcetera.com/en/products/autotest-growl","wiki_uri":""},{"dependencies":{"runtime":[],"development":[{"name":"addressable","requirements":"~> 2.2.6"},{"name":"aruba","requirements":"= 0.2.4"},{"name":"bundler","requirements":"~> 1.0.7"},{"name":"cucumber","requirements":"~> 0.9.4"},{"name":"curb","requirements":"= 0.7.8"},{"name":"em-http-request","requirements":"~> 0.3.0"},{"name":"excon","requirements":"~> 0.6.2"},{"name":"fakeweb","requirements":"~> 1.3.0"},{"name":"faraday","requirements":"~> 0.6.0"},{"name":"httpclient","requirements":"~> 2.1.5.2"},{"name":"patron","requirements":"= 0.4.9"},{"name":"rack","requirements":"= 1.1.0"},{"name":"rake","requirements":"~> 0.8.7"},{"name":"rspec","requirements":"~> 2.6"},{"name":"shoulda","requirements":"~> 2.9.2"},{"name":"sinatra","requirements":"~> 1.1.0"},{"name":"timecop","requirements":"~> 0.3.5"},{"name":"typhoeus","requirements":"~> 0.2.1"},{"name":"webmock","requirements":"~> 1.6.4"}]},"name":"vcr","downloads":24824,"info":"VCR provides a simple API to record and replay your test suite's HTTP interactions. It works with a variety of HTTP client libraries, HTTP stubbing libraries and testing frameworks.","version_downloads":537,"version":"1.10.0","homepage_uri":"http://github.com/myronmarston/vcr","bug_tracker_uri":"https://github.com/myronmarston/vcr/issues","source_code_uri":"https://github.com/myronmarston/vcr","gem_uri":"http://rubygems.org/gems/vcr-1.10.0.gem","project_uri":"http://rubygems.org/gems/vcr","authors":"Myron Marston","mailing_list_uri":"http://groups.google.com/group/vcr-ruby","documentation_uri":"http://relishapp.com/myronmarston/vcr","wiki_uri":"https://github.com/myronmarston/vcr/wiki"},{"dependencies":{"runtime":[{"name":"childprocess","requirements":">= 0.1.7"},{"name":"cucumber","requirements":">= 0.10.0"},{"name":"rspec","requirements":">= 2.5.0"}],"development":[]},"name":"aruba","downloads":15364,"info":"CLI Steps for Cucumber, hand-crafted for you in Aruba","version_downloads":929,"version":"0.3.6","homepage_uri":"http://github.com/aslakhellesoy/aruba","bug_tracker_uri":"http://github.com/aslakhellesoy/aruba/issues","source_code_uri":"http://github.com/aslakhellesoy/aruba.git","gem_uri":"http://rubygems.org/gems/aruba-0.3.6.gem","project_uri":"http://rubygems.org/gems/aruba","authors":"Aslak Helles\u00f8y, David Chelimsky, Mike Sassak","mailing_list_uri":"http://groups.google.com/group/cukes","documentation_uri":"http://github.com/aslakhellesoy/aruba/blob/master/README.rdoc","wiki_uri":""},{"dependencies":{"runtime":[{"name":"dnssd","requirements":"= 1.3.4"},{"name":"thor","requirements":">= 0.14.0"}],"development":[{"name":"cucumber","requirements":">= 0.9.0"},{"name":"rr","requirements":">= 0.10.11"},{"name":"rspec","requirements":">= 2.5.0"},{"name":"yard","requirements":">= 0.5.3"}]},"name":"specjour","downloads":11806,"info":" Specjour splits your RSpec suite across multiple machines, and multiple\n cores per machine, to run super-parallel-fast! Also works with Cucumber.\n","version_downloads":465,"version":"0.4.0","homepage_uri":"https://github.com/sandro/specjour","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/specjour-0.4.0.gem","project_uri":"http://rubygems.org/gems/specjour","authors":"Sandro Turriate","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"gherkin","requirements":"~> 2.3"},{"name":"haml","requirements":"> 2.0"}],"development":[{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":"~> 2.5"}]},"name":"stepdown","downloads":10964,"info":"Stepdown allows you to see where your most used Cucumber steps are, your unused steps and how they are clustered","version_downloads":20,"version":"0.5.0","homepage_uri":"http://stepdown.lineonpoint.com","bug_tracker_uri":"https://github.com/seancaffery/step-down/issues","source_code_uri":"https://github.com/seancaffery/step-down","gem_uri":"http://rubygems.org/gems/stepdown-0.5.0.gem","project_uri":"http://rubygems.org/gems/stepdown","authors":"Sean Caffery","mailing_list_uri":"http://groups.google.com/group/stepdowngem/topics","documentation_uri":"http://stepdown.lineonpoint.com","wiki_uri":""},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.10.2"}],"development":[{"name":"bundler","requirements":">= 1.0.13"},{"name":"celerity","requirements":">= 0.8.9"},{"name":"jruby-openssl","requirements":">= 0.7.4"},{"name":"rake","requirements":">= 0.8.7"},{"name":"rspec","requirements":">= 2.5.0"}]},"name":"cuke4duke","downloads":11239,"info":"Write Cucumber Step Definitions in Java, Scala, Groovy, Rhino Javascript, Clojure or Ioke","version_downloads":157,"version":"0.4.4","homepage_uri":"http://cukes.info","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cuke4duke-0.4.4.gem","project_uri":"http://rubygems.org/gems/cuke4duke","authors":"Aslak Helles\u00f8y","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"amqp","requirements":"= 0.6.7"},{"name":"bundler","requirements":"~> 1.0.7"},{"name":"cucumber","requirements":">= 0.10.0"},{"name":"mechanize","requirements":"= 1.0.0"},{"name":"net-ssh","requirements":"~> 2.1.0"},{"name":"rspec","requirements":">= 2.3.0"},{"name":"templater","requirements":">= 1.0.0"},{"name":"webrat","requirements":"= 0.7.2"}],"development":[{"name":"rake","requirements":">= 0.8.3"}]},"name":"cucumber-nagios","downloads":10124,"info":"cucumber-nagios helps you write behavioural tests for your systems and infrastructure, that can be plugged into Nagios.","version_downloads":376,"version":"0.9.0","homepage_uri":"http://cucumber-nagios.org/","bug_tracker_uri":"http://github.com/auxesis/cucumber-nagios/issues","source_code_uri":"http://github.com/auxesis/cucumber-nagios","gem_uri":"http://rubygems.org/gems/cucumber-nagios-0.9.0.gem","project_uri":"http://rubygems.org/gems/cucumber-nagios","authors":"Lindsay Holmwood","mailing_list_uri":"","documentation_uri":"","wiki_uri":""},{"dependencies":{"runtime":[{"name":"nokogiri","requirements":">= 1.4.4"}],"development":[]},"name":"cuporter","downloads":7043,"info":"Scrapes Cucumber *.feature files to build reports on tag usage and test inventory","version_downloads":28,"version":"0.3.6","homepage_uri":"http://github.com/twcamper/cuporter","bug_tracker_uri":"","source_code_uri":"","gem_uri":"http://rubygems.org/gems/cuporter-0.3.6.gem","project_uri":"http://rubygems.org/gems/cuporter","authors":"Tim Camper","mailing_list_uri":"","documentation_uri":"","wiki_uri":""},{"dependencies":{"runtime":[],"development":[]},"name":"coulda","downloads":6922,"info":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","version_downloads":598,"version":"0.6.3","homepage_uri":"http://coulda.tiggerpalace.com","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/coulda-0.6.3.gem","project_uri":"http://rubygems.org/gems/coulda","authors":"Evan David Light","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[],"development":[{"name":"rspec","requirements":">= 1.2.9"}]},"name":"rspactor","downloads":6142,"info":"RSpactor is a command line tool to automatically run your changed specs & cucumber features (much like autotest).","version_downloads":1319,"version":"0.6.4","homepage_uri":"http://github.com/thibaudgg/rspactor","bug_tracker_uri":"http://github.com/thibaudgg/rspactor/issues","source_code_uri":"http://github.com/thibaudgg/rspactor","gem_uri":"http://rubygems.org/gems/rspactor-0.6.4.gem","project_uri":"http://rubygems.org/gems/rspactor","authors":"Mislav Marohni\u0107, Andreas Wolff, Pelle Braendgaard, Thibaud Guillaume-Gentil","mailing_list_uri":"","documentation_uri":"","wiki_uri":""},{"dependencies":{"runtime":[{"name":"aasm","requirements":">= 0"},{"name":"calendar_date_select","requirements":"~> 1.15"},{"name":"googlecharts","requirements":"~> 1.4.0"},{"name":"rails","requirements":"~> 2.3.5"}],"development":[{"name":"machinist","requirements":">= 0"},{"name":"mocha","requirements":">= 0"},{"name":"relevance-rcov","requirements":">= 0"},{"name":"ruby-debug","requirements":">= 0"},{"name":"ruby-prof","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}]},"name":"branston","downloads":6042,"info":"An agile user story tracker that generates gherkin files and step definitions for use with the cucumber testing framework.","version_downloads":29,"version":"0.6.6","homepage_uri":"http://github.com/futurechimp/branston","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/branston-0.6.6.gem","project_uri":"http://rubygems.org/gems/branston","authors":"dave.hrycyszyn@headlondon.com, dan@dangarland.co.uk, steve.laing@gmail.com","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"crack","requirements":">= 0.1.8"}],"development":[{"name":"fakeweb","requirements":"~> 1.3.0"},{"name":"rspec","requirements":"~> 2.0.0"}]},"name":"pickler","downloads":6259,"info":"Synchronize between Cucumber and Pivotal Tracker","version_downloads":1277,"version":"0.2.0","homepage_uri":"http://github.com/tpope/pickler","bug_tracker_uri":"http://github.com/tpope/pickler/issues","source_code_uri":"http://github.com/tpope/pickler","gem_uri":"http://rubygems.org/gems/pickler-0.2.0.gem","project_uri":"http://rubygems.org/gems/pickler","authors":"Tim Pope","mailing_list_uri":"","documentation_uri":"","wiki_uri":""},{"dependencies":{"runtime":[],"development":[]},"name":"cucumber_factory","downloads":5798,"info":"Cucumber Factory allows you to create ActiveRecord models from your Cucumber features without writing step definitions for each model.","version_downloads":928,"version":"1.7.4","homepage_uri":"http://github.com/makandra/cucumber_factory","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cucumber_factory-1.7.4.gem","project_uri":"http://rubygems.org/gems/cucumber_factory","authors":"Henning Koch","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"acts_as_rails3_generator","requirements":">= 0"},{"name":"daemons","requirements":">= 1.0.10"},{"name":"httparty","requirements":">= 0.6.1"},{"name":"json_pure","requirements":">= 1.4.6"},{"name":"macaddr","requirements":">= 1.0.0"},{"name":"net-ssh","requirements":">= 2.0.23"},{"name":"sinatra","requirements":"= 1.0.0"}],"development":[{"name":"bundler","requirements":">= 0"},{"name":"cucumber","requirements":">= 0"},{"name":"flexmock","requirements":">= 0"},{"name":"rack-test","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rvm","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}]},"name":"testbot","downloads":5364,"info":"Testbot is a test distribution tool that works with Rails, RSpec, RSpec2, Test::Unit and Cucumber.","version_downloads":96,"version":"0.5.6","homepage_uri":"http://github.com/joakimk/testbot","bug_tracker_uri":"https://github.com/joakimk/testbot/issues","source_code_uri":"https://github.com/joakimk/testbot","gem_uri":"http://rubygems.org/gems/testbot-0.5.6.gem","project_uri":"http://rubygems.org/gems/testbot","authors":"Joakim Kolsj\u00f6","mailing_list_uri":"","documentation_uri":"https://github.com/joakimk/testbot","wiki_uri":"https://github.com/joakimk/testbot/wiki"},{"dependencies":{"runtime":[{"name":"background_process","requirements":">= 0"},{"name":"cucumber","requirements":">= 0"},{"name":"httparty","requirements":">= 0"},{"name":"nokogiri","requirements":">= 0"}],"development":[]},"name":"iCuke","downloads":5177,"info":"Cucumber support for iPhone applications","version_downloads":787,"version":"0.6.3","homepage_uri":"http://github.com/unboxed/iCuke","bug_tracker_uri":"","source_code_uri":"http://github.com/unboxed/icuke","gem_uri":"http://rubygems.org/gems/iCuke-0.6.3.gem","project_uri":"http://rubygems.org/gems/iCuke","authors":"Rob Holland","mailing_list_uri":"","documentation_uri":"","wiki_uri":"http://wiki.github.com/unboxed/icuke"},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.7.5"},{"name":"gherkin","requirements":">= 2.2.9"},{"name":"yard","requirements":">= 0.6.3"}],"development":[]},"name":"cucumber-in-the-yard","downloads":4949,"info":" \n Cucumber-In-The-Yard is a YARD extension that processes Cucumber Features, Scenarios, Steps,\n Step Definitions, Transforms, and Tags and provides a documentation interface that allows you\n easily view and investigate the test suite. This tools hopes to bridge the gap of being able\n to provide your feature descriptions to your Product Owners and Stakeholders. ","version_downloads":325,"version":"1.7.8","homepage_uri":"http://github.com/burtlo/Cucumber-In-The-Yard","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cucumber-in-the-yard-1.7.8.gem","project_uri":"http://rubygems.org/gems/cucumber-in-the-yard","authors":"Franklin Webber","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"capybara","requirements":">= 0"},{"name":"cucumber","requirements":">= 0"},{"name":"machinist","requirements":">= 0"}],"development":[{"name":"rspec","requirements":">= 1.2.9"},{"name":"yard","requirements":">= 0"}]},"name":"sandwich","downloads":4892,"info":"Yup, cucumber helpers","version_downloads":381,"version":"0.0.20","homepage_uri":"http://github.com/david/sandwich","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/sandwich-0.0.20.gem","project_uri":"http://rubygems.org/gems/sandwich","authors":"David Leal","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"rake","requirements":"~> 0.8.7"}],"development":[{"name":"bundler","requirements":"~> 1.0.0"},{"name":"cucumber","requirements":"~> 0.6.4"},{"name":"ronn","requirements":"~> 0.5"}]},"name":"shoe","downloads":4458,"info":"Configuration-free Rake tasks that read your gemspec. These tasks re-use built-in Rubygems functionality so you can be confident you're shipping what you think you are.","version_downloads":66,"version":"0.8.0","homepage_uri":"http://github.com/matthewtodd/shoe","bug_tracker_uri":"","source_code_uri":"http://github.com/matthewtodd/shoe","gem_uri":"http://rubygems.org/gems/shoe-0.8.0.gem","project_uri":"http://rubygems.org/gems/shoe","authors":"Matthew Todd","mailing_list_uri":"","documentation_uri":"http://rubydoc.info/gems/shoe/frames","wiki_uri":""},{"dependencies":{"runtime":[{"name":"cucumber","requirements":"~> 0.10.0"},{"name":"guard","requirements":"~> 0.3.0"}],"development":[{"name":"bundler","requirements":"~> 1.0.10"},{"name":"guard-rspec","requirements":"~> 0.3.1"},{"name":"rspec","requirements":"~> 2.5.0"}]},"name":"guard-cucumber","downloads":4334,"info":"Guard::Cucumber automatically run your features (much like autotest)","version_downloads":369,"version":"0.3.2","homepage_uri":"http://github.com/netzpirat/guard-cucumber","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/guard-cucumber-0.3.2.gem","project_uri":"http://rubygems.org/gems/guard-cucumber","authors":"Michael Kessler","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"background_process","requirements":">= 0"},{"name":"builder","requirements":">= 2.0.0"},{"name":"cucumber","requirements":">= 0.9.3"}],"development":[{"name":"rspec","requirements":">= 2.0.0"}]},"name":"aruba-jbb","downloads":4208,"info":"Fork of Aruba, Cucumber steps for testing CLI applications.","version_downloads":62,"version":"0.2.6.14","homepage_uri":"http://github.com/byrnejb/aruba","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/aruba-jbb-0.2.6.14.gem","project_uri":"http://rubygems.org/gems/aruba-jbb","authors":"Aslak Helles\u00f8y, David Chelimsky, James B. Byrne, Mike Sassak","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0"},{"name":"ruby-progressbar","requirements":"~> 0.0.9"}],"development":[{"name":"bundler","requirements":">= 0"},{"name":"jeweler","requirements":"~> 1.5.1"},{"name":"rcov","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}]},"name":"fuubar-cucumber","downloads":4024,"info":"the instafailing Cucumber progress bar formatter","version_downloads":2339,"version":"0.0.9","homepage_uri":"http://github.com/martinciu/fuubar-cucumber","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/fuubar-cucumber-0.0.9.gem","project_uri":"http://rubygems.org/gems/fuubar-cucumber","authors":"Marcin Ciunelis","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.5.2"},{"name":"json","requirements":">= 1.2.0"},{"name":"win32console","requirements":">= 1.2.0"},{"name":"win32-process","requirements":">= 0.6.1"}],"development":[]},"name":"cuke4nuke","downloads":3917,"info":"Runs Cucumber with .NET step definitions.","version_downloads":617,"version":"0.4.0","homepage_uri":"http://github.com/richardlawrence/Cuke4Nuke","bug_tracker_uri":"http://github.com/richardlawrence/Cuke4Nuke/issues","source_code_uri":"http://github.com/richardlawrence/Cuke4Nuke","gem_uri":"http://rubygems.org/gems/cuke4nuke-0.4.0.gem","project_uri":"http://rubygems.org/gems/cuke4nuke","authors":"Richard Lawrence","mailing_list_uri":"http://groups.google.com/group/cukes/","documentation_uri":"","wiki_uri":"http://wiki.github.com/richardlawrence/Cuke4Nuke"},{"dependencies":{"runtime":[{"name":"templater","requirements":">= 1.0.0"}],"development":[]},"name":"cucumber-sinatra","downloads":3395,"info":"This little gem will help you to initialize a cucumber environment for a sinatra application. It will generate the required files from templates.","version_downloads":188,"version":"0.3.1","homepage_uri":"http://github.com/bernd/cucumber-sinatra","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cucumber-sinatra-0.3.1.gem","project_uri":"http://rubygems.org/gems/cucumber-sinatra","authors":"Bernd Ahlers","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"cucumber","requirements":"~> 0.9"},{"name":"webrat","requirements":"~> 0.7"}],"development":[{"name":"rspec","requirements":"~> 1.3"}]},"name":"cucumber-screenshot","downloads":3359,"info":"Extension for Cucumber (http://cukes.info/) that makes it easy to take HTML snapshots and also to use Webkit to capture PNG screenshots of your web application during tests","version_downloads":566,"version":"0.3.4","homepage_uri":"http://github.com/mocoso/cucumber-screenshot","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cucumber-screenshot-0.3.4.gem","project_uri":"http://rubygems.org/gems/cucumber-screenshot","authors":"Joel Chippindale","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null}]
1
+ [{"dependencies":{"runtime":[{"name":"builder","requirements":">= 2.1.2"},{"name":"diff-lcs","requirements":">= 1.1.2"},{"name":"gherkin","requirements":"~> 2.4.1"},{"name":"json","requirements":">= 1.4.6"},{"name":"term-ansicolor","requirements":">= 1.0.5"}],"development":[{"name":"aruba","requirements":"~> 0.4.2"},{"name":"bcat","requirements":"= 0.6.1"},{"name":"capybara","requirements":">= 1.0.0"},{"name":"nokogiri","requirements":">= 1.4.4"},{"name":"prawn","requirements":"= 0.8.4"},{"name":"prawn-layout","requirements":"= 0.8.4"},{"name":"rack-test","requirements":">= 0.5.7"},{"name":"rake","requirements":">= 0.9.2"},{"name":"ramaze","requirements":">= 0"},{"name":"rdiscount","requirements":"= 1.6.8"},{"name":"rspec","requirements":">= 2.6.0"},{"name":"simplecov","requirements":">= 0.4.2"},{"name":"sinatra","requirements":">= 1.2.6"},{"name":"spork","requirements":">= 0.9.0.rc7"},{"name":"syntax","requirements":">= 1.0.0"},{"name":"webrat","requirements":">= 0.7.3"},{"name":"yard","requirements":"= 0.7.1"}]},"name":"cucumber","downloads":754236,"info":"Behaviour Driven Development with elegance and joy","version_downloads":5119,"version":"1.0.0","homepage_uri":"http://cukes.info","bug_tracker_uri":"http://rspec.lighthouseapp.com/projects/16211/","source_code_uri":"http://github.com/cucumber/cucumber/tree/master","gem_uri":"http://rubygems.org/gems/cucumber-1.0.0.gem","project_uri":"http://rubygems.org/gems/cucumber","authors":"Aslak Helles\u00f8y","mailing_list_uri":"http://groups.google.com/group/cukes","documentation_uri":"http://cukes.info","wiki_uri":"http://wiki.github.com/cucumber/cucumber"},{"dependencies":{"runtime":[{"name":"capybara","requirements":">= 1.0.0"},{"name":"cucumber","requirements":"~> 1.0.0"},{"name":"nokogiri","requirements":">= 1.4.4"},{"name":"rack-test","requirements":">= 0.5.7"}],"development":[{"name":"aruba","requirements":">= 0.4.1"},{"name":"bson_ext","requirements":">= 1.3.1"},{"name":"bundler","requirements":">= 1.0.15"},{"name":"coffee-script","requirements":">= 2.2.0"},{"name":"database_cleaner","requirements":">= 0.6.7"},{"name":"factory_girl","requirements":">= 2.0.0.beta2"},{"name":"jquery-rails","requirements":">= 1.0.9"},{"name":"mongoid","requirements":">= 2.0.2"},{"name":"rails","requirements":">= 3.1.0.rc4"},{"name":"rake","requirements":">= 0.9.2"},{"name":"rspec","requirements":">= 2.6.0"},{"name":"rspec-rails","requirements":">= 2.6.1"},{"name":"sass","requirements":">= 3.1.1"},{"name":"sqlite3-ruby","requirements":">= 1.3.3"},{"name":"turn","requirements":">= 0.8.2"},{"name":"uglifier","requirements":">= 0.5.4"}]},"name":"cucumber-rails","downloads":423546,"info":"Cucumber Generators and Runtime for Rails","version_downloads":2778,"version":"1.0.0","homepage_uri":"http://cukes.info","bug_tracker_uri":"http://github.com/aslakhellesoy/cucumber-rails/issues","source_code_uri":"http://github.com/aslakhellesoy/cucumber-rails","gem_uri":"http://rubygems.org/gems/cucumber-rails-1.0.0.gem","project_uri":"http://rubygems.org/gems/cucumber-rails","authors":"Aslak Helles\u00f8y, Dennis Bl\u00f6te, Rob Holland","mailing_list_uri":"http://groups.google.com/group/cukes","documentation_uri":"http://cukes.info/","wiki_uri":"http://wiki.github.com/aslakhellesoy/cucumber-rails"},{"dependencies":{"runtime":[],"development":[{"name":"cucumber","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}]},"name":"culerity","downloads":406438,"info":"Culerity integrates Cucumber and Celerity in order to test your application's full stack.","version_downloads":165556,"version":"0.2.15","homepage_uri":"http://github.com/langalex/culerity","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/culerity-0.2.15.gem","project_uri":"http://rubygems.org/gems/culerity","authors":"Alexander Lang","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"builder","requirements":">= 2.1.2"}],"development":[{"name":"hoe","requirements":">= 2.9.4"},{"name":"rubyforge","requirements":">= 2.0.4"}]},"name":"ci_reporter","downloads":109756,"info":"CI::Reporter is an add-on to Test::Unit, RSpec and Cucumber that allows you to generate XML reports of your test, spec and/or feature runs. The resulting files can be read by a continuous integration system that understands Ant's JUnit report XML format, thus allowing your CI system to track test/spec successes and failures.","version_downloads":2387,"version":"1.6.5","homepage_uri":"http://caldersphere.rubyforge.org/ci_reporter","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/ci_reporter-1.6.5.gem","project_uri":"http://rubygems.org/gems/ci_reporter","authors":"Nick Sieger","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"mail","requirements":"~> 2.2"},{"name":"rspec","requirements":"~> 2.0"}],"development":[]},"name":"email_spec","downloads":106798,"info":"Easily test email in rspec and cucumber","version_downloads":538,"version":"1.2.1","homepage_uri":"http://github.com/bmabey/email-spec/","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/email_spec-1.2.1.gem","project_uri":"http://rubygems.org/gems/email_spec","authors":"Ben Mabey, Aaron Gibralter, Mischa Fierer","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.8"},{"name":"rake","requirements":">= 0"}],"development":[{"name":"bundler","requirements":">= 0"},{"name":"capybara","requirements":">= 0"},{"name":"cucumber-rails","requirements":">= 0.3.2"},{"name":"database_cleaner","requirements":">= 0"},{"name":"factory_girl","requirements":">= 0"},{"name":"git","requirements":">= 0"},{"name":"machinist","requirements":">= 0"},{"name":"rack","requirements":"~> 1.2.1"},{"name":"rails","requirements":"~> 3.0.5"},{"name":"rcov","requirements":">= 0"},{"name":"rspec-rails","requirements":"~> 2.5.0"},{"name":"sqlite3-ruby","requirements":">= 0"},{"name":"yard","requirements":">= 0"}]},"name":"pickle","downloads":93373,"info":"Easy model creation and reference in your cucumber features","version_downloads":11003,"version":"0.4.7","homepage_uri":"http://github.com/ianwhite/pickle","bug_tracker_uri":"http://ianwhite.lighthouseapp.com/projects/25941-pickle","source_code_uri":"http://github.com/ianwhite/pickle","gem_uri":"http://rubygems.org/gems/pickle-0.4.7.gem","project_uri":"http://rubygems.org/gems/pickle","authors":"Ian White","mailing_list_uri":"","documentation_uri":"http://ianwhite.github.com/pickle","wiki_uri":""},{"dependencies":{"runtime":[],"development":[{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":">= 0"},{"name":"ZenTest","requirements":">= 0"}]},"name":"autotest-growl","downloads":76044,"info":"This gem aims to improve support for Growl notifications by autotest.","version_downloads":34652,"version":"0.2.9","homepage_uri":"http://www.bitcetera.com/products/autotest-growl","bug_tracker_uri":"https://forge.bitcetera.com/projects/show/autotest-growl","source_code_uri":"http://github.com/svoop/autotest-growl/tree/master","gem_uri":"http://rubygems.org/gems/autotest-growl-0.2.9.gem","project_uri":"http://rubygems.org/gems/autotest-growl","authors":"Sven Schwyn","mailing_list_uri":"https://forge.bitcetera.com/projects/autotest-growl/boards","documentation_uri":"http://www.bitcetera.com/en/products/autotest-growl","wiki_uri":""},{"dependencies":{"runtime":[{"name":"capybara","requirements":">= 1.0.0"},{"name":"rspec-rails","requirements":">= 2.5.0"}],"development":[]},"name":"steak","downloads":35457,"info":"Steak is a minimal extension of RSpec-Rails that adds several conveniences to do acceptance testing of Rails applications using Capybara. It's an alternative to Cucumber in plain Ruby.","version_downloads":502,"version":"2.0.0","homepage_uri":"http://github.com/cavalle/steak","bug_tracker_uri":"http://github.com/cavalle/steak/issues","source_code_uri":"http://github.com/cavalle/steak","gem_uri":"http://rubygems.org/gems/steak-2.0.0.gem","project_uri":"http://rubygems.org/gems/steak","authors":"Luismi Cavall\u00e9","mailing_list_uri":"http://groups.google.com/group/steakrb","documentation_uri":"http://rdoc.info/projects/cavalle/steak","wiki_uri":""},{"dependencies":{"runtime":[],"development":[{"name":"addressable","requirements":"~> 2.2.6"},{"name":"aruba","requirements":"= 0.2.4"},{"name":"bundler","requirements":"~> 1.0.7"},{"name":"cucumber","requirements":"~> 0.9.4"},{"name":"curb","requirements":"= 0.7.8"},{"name":"em-http-request","requirements":"~> 0.3.0"},{"name":"excon","requirements":"~> 0.6.2"},{"name":"fakeweb","requirements":"~> 1.3.0"},{"name":"faraday","requirements":"~> 0.6.0"},{"name":"httpclient","requirements":"~> 2.1.5.2"},{"name":"patron","requirements":"= 0.4.9"},{"name":"rack","requirements":"= 1.1.0"},{"name":"rake","requirements":"~> 0.8.7"},{"name":"rspec","requirements":"~> 2.6"},{"name":"shoulda","requirements":"~> 2.9.2"},{"name":"sinatra","requirements":"~> 1.1.0"},{"name":"timecop","requirements":"~> 0.3.5"},{"name":"typhoeus","requirements":"~> 0.2.1"},{"name":"webmock","requirements":"~> 1.6.4"}]},"name":"vcr","downloads":28044,"info":"VCR provides a simple API to record and replay your test suite's HTTP interactions. It works with a variety of HTTP client libraries, HTTP stubbing libraries and testing frameworks.","version_downloads":2068,"version":"1.10.0","homepage_uri":"http://github.com/myronmarston/vcr","bug_tracker_uri":"https://github.com/myronmarston/vcr/issues","source_code_uri":"https://github.com/myronmarston/vcr","gem_uri":"http://rubygems.org/gems/vcr-1.10.0.gem","project_uri":"http://rubygems.org/gems/vcr","authors":"Myron Marston","mailing_list_uri":"http://groups.google.com/group/vcr-ruby","documentation_uri":"http://relishapp.com/myronmarston/vcr","wiki_uri":"https://github.com/myronmarston/vcr/wiki"},{"dependencies":{"runtime":[{"name":"bcat","requirements":">= 0.6.1"},{"name":"childprocess","requirements":">= 0.1.9"},{"name":"cucumber","requirements":">= 0.10.7"},{"name":"rdiscount","requirements":">= 1.6.8"},{"name":"rspec","requirements":">= 2.6.0"}],"development":[]},"name":"aruba","downloads":17344,"info":"CLI Steps for Cucumber, hand-crafted for you in Aruba","version_downloads":142,"version":"0.4.2","homepage_uri":"http://github.com/aslakhellesoy/aruba","bug_tracker_uri":"http://github.com/aslakhellesoy/aruba/issues","source_code_uri":"http://github.com/aslakhellesoy/aruba.git","gem_uri":"http://rubygems.org/gems/aruba-0.4.2.gem","project_uri":"http://rubygems.org/gems/aruba","authors":"Aslak Helles\u00f8y, David Chelimsky, Mike Sassak","mailing_list_uri":"http://groups.google.com/group/cukes","documentation_uri":"http://github.com/aslakhellesoy/aruba/blob/master/README.rdoc","wiki_uri":""},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.10.2"}],"development":[{"name":"bundler","requirements":">= 1.0.13"},{"name":"celerity","requirements":">= 0.8.9"},{"name":"jruby-openssl","requirements":">= 0.7.4"},{"name":"rake","requirements":">= 0.8.7"},{"name":"rspec","requirements":">= 2.5.0"}]},"name":"cuke4duke","downloads":13615,"info":"Write Cucumber Step Definitions in Java, Scala, Groovy, Rhino Javascript, Clojure or Ioke","version_downloads":566,"version":"0.4.4","homepage_uri":"http://cukes.info","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cuke4duke-0.4.4.gem","project_uri":"http://rubygems.org/gems/cuke4duke","authors":"Aslak Helles\u00f8y","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"dnssd","requirements":"= 1.3.4"},{"name":"thor","requirements":">= 0.14.0"}],"development":[{"name":"cucumber","requirements":">= 0.9.0"},{"name":"rr","requirements":">= 0.10.11"},{"name":"rspec","requirements":">= 2.5.0"},{"name":"yard","requirements":">= 0.5.3"}]},"name":"specjour","downloads":12456,"info":" Specjour splits your RSpec suite across multiple machines, and multiple\n cores per machine, to run super-parallel-fast! Also works with Cucumber.\n","version_downloads":53,"version":"0.4.1","homepage_uri":"https://github.com/sandro/specjour","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/specjour-0.4.1.gem","project_uri":"http://rubygems.org/gems/specjour","authors":"Sandro Turriate","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"bundler","requirements":"~> 1.0"},{"name":"gherkin","requirements":"~> 2.3"},{"name":"haml","requirements":"> 2.0"}],"development":[{"name":"rake","requirements":">= 0"},{"name":"rspec","requirements":"~> 2.5.0"}]},"name":"stepdown","downloads":11095,"info":"Stepdown allows you to see where your most used Cucumber steps are, your unused steps and how they are clustered","version_downloads":14,"version":"0.6.1","homepage_uri":"http://stepdown.lineonpoint.com","bug_tracker_uri":"https://github.com/seancaffery/step-down/issues","source_code_uri":"https://github.com/seancaffery/step-down","gem_uri":"http://rubygems.org/gems/stepdown-0.6.1.gem","project_uri":"http://rubygems.org/gems/stepdown","authors":"Sean Caffery","mailing_list_uri":"http://groups.google.com/group/stepdowngem/topics","documentation_uri":"http://stepdown.lineonpoint.com","wiki_uri":""},{"dependencies":{"runtime":[{"name":"amqp","requirements":"= 0.6.7"},{"name":"bundler","requirements":"~> 1.0.7"},{"name":"cucumber","requirements":">= 0.10.0"},{"name":"mechanize","requirements":"= 1.0.0"},{"name":"net-ssh","requirements":"~> 2.1.0"},{"name":"rspec","requirements":">= 2.3.0"},{"name":"templater","requirements":">= 1.0.0"},{"name":"webrat","requirements":"= 0.7.2"}],"development":[{"name":"rake","requirements":">= 0.8.3"}]},"name":"cucumber-nagios","downloads":11001,"info":"cucumber-nagios helps you write behavioural tests for your systems and infrastructure, that can be plugged into Nagios.","version_downloads":208,"version":"0.9.2","homepage_uri":"http://cucumber-nagios.org/","bug_tracker_uri":"http://github.com/auxesis/cucumber-nagios/issues","source_code_uri":"http://github.com/auxesis/cucumber-nagios","gem_uri":"http://rubygems.org/gems/cucumber-nagios-0.9.2.gem","project_uri":"http://rubygems.org/gems/cucumber-nagios","authors":"Lindsay Holmwood","mailing_list_uri":"","documentation_uri":"","wiki_uri":""},{"dependencies":{"runtime":[{"name":"nokogiri","requirements":">= 1.4.1"}],"development":[]},"name":"cuporter","downloads":7445,"info":"Scrapes Cucumber *.feature files to build reports on tag usage and test inventory","version_downloads":33,"version":"0.3.9","homepage_uri":"http://github.com/twcamper/cuporter","bug_tracker_uri":"","source_code_uri":"","gem_uri":"http://rubygems.org/gems/cuporter-0.3.9.gem","project_uri":"http://rubygems.org/gems/cuporter","authors":"Tim Camper","mailing_list_uri":"","documentation_uri":"","wiki_uri":""},{"dependencies":{"runtime":[],"development":[]},"name":"coulda","downloads":7463,"info":"Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse","version_downloads":808,"version":"0.6.3","homepage_uri":"http://coulda.tiggerpalace.com","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/coulda-0.6.3.gem","project_uri":"http://rubygems.org/gems/coulda","authors":"Evan David Light","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.10"},{"name":"guard","requirements":">= 0.4.0"}],"development":[{"name":"bundler","requirements":"~> 1.0"},{"name":"guard-rspec","requirements":"~> 0.4"},{"name":"rspec","requirements":"~> 2.6"}]},"name":"guard-cucumber","downloads":6836,"info":"Guard::Cucumber automatically run your features (much like autotest)","version_downloads":615,"version":"0.5.0","homepage_uri":"http://github.com/netzpirat/guard-cucumber","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/guard-cucumber-0.5.0.gem","project_uri":"http://rubygems.org/gems/guard-cucumber","authors":"Michael Kessler","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[],"development":[{"name":"rspec","requirements":">= 1.2.9"}]},"name":"rspactor","downloads":6507,"info":"RSpactor is a command line tool to automatically run your changed specs & cucumber features (much like autotest).","version_downloads":1391,"version":"0.6.4","homepage_uri":"http://github.com/thibaudgg/rspactor","bug_tracker_uri":"http://github.com/thibaudgg/rspactor/issues","source_code_uri":"http://github.com/thibaudgg/rspactor","gem_uri":"http://rubygems.org/gems/rspactor-0.6.4.gem","project_uri":"http://rubygems.org/gems/rspactor","authors":"Mislav Marohni\u0107, Andreas Wolff, Pelle Braendgaard, Thibaud Guillaume-Gentil","mailing_list_uri":"","documentation_uri":"","wiki_uri":""},{"dependencies":{"runtime":[{"name":"aasm","requirements":">= 0"},{"name":"calendar_date_select","requirements":"~> 1.15"},{"name":"googlecharts","requirements":"~> 1.4.0"},{"name":"rails","requirements":"~> 2.3.5"}],"development":[{"name":"machinist","requirements":">= 0"},{"name":"mocha","requirements":">= 0"},{"name":"relevance-rcov","requirements":">= 0"},{"name":"ruby-debug","requirements":">= 0"},{"name":"ruby-prof","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}]},"name":"branston","downloads":6399,"info":"An agile user story tracker that generates gherkin files and step definitions for use with the cucumber testing framework.","version_downloads":40,"version":"0.6.6","homepage_uri":"http://github.com/futurechimp/branston","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/branston-0.6.6.gem","project_uri":"http://rubygems.org/gems/branston","authors":"dave.hrycyszyn@headlondon.com, dan@dangarland.co.uk, steve.laing@gmail.com","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"crack","requirements":">= 0.1.8"}],"development":[{"name":"fakeweb","requirements":"~> 1.3.0"},{"name":"rspec","requirements":"~> 2.0.0"}]},"name":"pickler","downloads":6561,"info":"Synchronize between Cucumber and Pivotal Tracker","version_downloads":1513,"version":"0.2.0","homepage_uri":"http://github.com/tpope/pickler","bug_tracker_uri":"http://github.com/tpope/pickler/issues","source_code_uri":"http://github.com/tpope/pickler","gem_uri":"http://rubygems.org/gems/pickler-0.2.0.gem","project_uri":"http://rubygems.org/gems/pickler","authors":"Tim Pope","mailing_list_uri":"","documentation_uri":"","wiki_uri":""},{"dependencies":{"runtime":[],"development":[]},"name":"cucumber_factory","downloads":6262,"info":"Cucumber Factory allows you to create ActiveRecord models from your Cucumber features without writing step definitions for each model.","version_downloads":59,"version":"1.8.0","homepage_uri":"http://github.com/makandra/cucumber_factory","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cucumber_factory-1.8.0.gem","project_uri":"http://rubygems.org/gems/cucumber_factory","authors":"Henning Koch","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"acts_as_rails3_generator","requirements":">= 0"},{"name":"daemons","requirements":">= 1.0.10"},{"name":"httparty","requirements":">= 0.6.1"},{"name":"json_pure","requirements":">= 1.4.6"},{"name":"macaddr","requirements":">= 1.0.0"},{"name":"net-ssh","requirements":">= 2.0.23"},{"name":"sinatra","requirements":"= 1.0.0"}],"development":[{"name":"bundler","requirements":">= 0"},{"name":"cucumber","requirements":">= 0"},{"name":"flexmock","requirements":">= 0"},{"name":"guard","requirements":">= 0"},{"name":"guard-test","requirements":">= 0"},{"name":"rack-test","requirements":">= 0"},{"name":"rake","requirements":">= 0"},{"name":"rvm","requirements":">= 0"},{"name":"shoulda","requirements":">= 0"}]},"name":"testbot","downloads":5832,"info":"Testbot is a test distribution tool that works with Rails, RSpec, RSpec2, Test::Unit and Cucumber.","version_downloads":20,"version":"0.5.7","homepage_uri":"http://github.com/joakimk/testbot","bug_tracker_uri":"https://github.com/joakimk/testbot/issues","source_code_uri":"https://github.com/joakimk/testbot","gem_uri":"http://rubygems.org/gems/testbot-0.5.7.gem","project_uri":"http://rubygems.org/gems/testbot","authors":"Joakim Kolsj\u00f6","mailing_list_uri":"","documentation_uri":"https://github.com/joakimk/testbot","wiki_uri":"https://github.com/joakimk/testbot/wiki"},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.7.5"},{"name":"gherkin","requirements":">= 2.2.9"},{"name":"yard","requirements":">= 0.6.3"}],"development":[]},"name":"cucumber-in-the-yard","downloads":5373,"info":" \n Cucumber-In-The-Yard is a YARD extension that processes Cucumber Features, Scenarios, Steps,\n Step Definitions, Transforms, and Tags and provides a documentation interface that allows you\n easily view and investigate the test suite. This tools hopes to bridge the gap of being able\n to provide your feature descriptions to your Product Owners and Stakeholders. ","version_downloads":381,"version":"1.7.8","homepage_uri":"http://github.com/burtlo/Cucumber-In-The-Yard","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cucumber-in-the-yard-1.7.8.gem","project_uri":"http://rubygems.org/gems/cucumber-in-the-yard","authors":"Franklin Webber","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"background_process","requirements":">= 0"},{"name":"cucumber","requirements":">= 0"},{"name":"httparty","requirements":">= 0"},{"name":"nokogiri","requirements":">= 0"}],"development":[]},"name":"iCuke","downloads":5507,"info":"Cucumber support for iPhone applications","version_downloads":837,"version":"0.6.3","homepage_uri":"http://github.com/unboxed/iCuke","bug_tracker_uri":"","source_code_uri":"http://github.com/unboxed/icuke","gem_uri":"http://rubygems.org/gems/iCuke-0.6.3.gem","project_uri":"http://rubygems.org/gems/iCuke","authors":"Rob Holland","mailing_list_uri":"","documentation_uri":"","wiki_uri":"http://wiki.github.com/unboxed/icuke"},{"dependencies":{"runtime":[{"name":"capybara","requirements":">= 0"},{"name":"cucumber","requirements":">= 0"},{"name":"machinist","requirements":">= 0"}],"development":[{"name":"rspec","requirements":">= 1.2.9"},{"name":"yard","requirements":">= 0"}]},"name":"sandwich","downloads":5113,"info":"Yup, cucumber helpers","version_downloads":397,"version":"0.0.20","homepage_uri":"http://github.com/david/sandwich","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/sandwich-0.0.20.gem","project_uri":"http://rubygems.org/gems/sandwich","authors":"David Leal","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0"},{"name":"ruby-progressbar","requirements":"~> 0.0.9"}],"development":[{"name":"bundler","requirements":">= 0"},{"name":"jeweler","requirements":"~> 1.5.1"},{"name":"rcov","requirements":">= 0"},{"name":"rspec","requirements":">= 0"}]},"name":"fuubar-cucumber","downloads":4746,"info":"the instafailing Cucumber progress bar formatter","version_downloads":314,"version":"0.0.10","homepage_uri":"http://github.com/martinciu/fuubar-cucumber","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/fuubar-cucumber-0.0.10.gem","project_uri":"http://rubygems.org/gems/fuubar-cucumber","authors":"Marcin Ciunelis","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"rake","requirements":"~> 0.8.7"}],"development":[{"name":"bundler","requirements":"~> 1.0.0"},{"name":"cucumber","requirements":"~> 0.6.4"},{"name":"ronn","requirements":"~> 0.5"}]},"name":"shoe","downloads":4648,"info":"Configuration-free Rake tasks that read your gemspec. These tasks re-use built-in Rubygems functionality so you can be confident you're shipping what you think you are.","version_downloads":77,"version":"0.8.0","homepage_uri":"http://github.com/matthewtodd/shoe","bug_tracker_uri":"","source_code_uri":"http://github.com/matthewtodd/shoe","gem_uri":"http://rubygems.org/gems/shoe-0.8.0.gem","project_uri":"http://rubygems.org/gems/shoe","authors":"Matthew Todd","mailing_list_uri":"","documentation_uri":"http://rubydoc.info/gems/shoe/frames","wiki_uri":""},{"dependencies":{"runtime":[{"name":"background_process","requirements":">= 0"},{"name":"builder","requirements":">= 2.0.0"},{"name":"cucumber","requirements":">= 0.10.3"}],"development":[{"name":"rspec","requirements":">= 2.0.0"}]},"name":"aruba-jbb","downloads":4563,"info":"Fork of Aruba, Cucumber steps for testing CLI applications.","version_downloads":24,"version":"0.2.7.01","homepage_uri":"http://github.com/byrnejb/aruba","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/aruba-jbb-0.2.7.01.gem","project_uri":"http://rubygems.org/gems/aruba-jbb","authors":"Aslak Helles\u00f8y, David Chelimsky, James B. Byrne, Mike Sassak","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null},{"dependencies":{"runtime":[{"name":"cucumber","requirements":">= 0.5.2"},{"name":"json","requirements":">= 1.2.0"},{"name":"win32console","requirements":">= 1.2.0"},{"name":"win32-process","requirements":">= 0.6.1"}],"development":[]},"name":"cuke4nuke","downloads":4098,"info":"Runs Cucumber with .NET step definitions.","version_downloads":671,"version":"0.4.0","homepage_uri":"http://github.com/richardlawrence/Cuke4Nuke","bug_tracker_uri":"http://github.com/richardlawrence/Cuke4Nuke/issues","source_code_uri":"http://github.com/richardlawrence/Cuke4Nuke","gem_uri":"http://rubygems.org/gems/cuke4nuke-0.4.0.gem","project_uri":"http://rubygems.org/gems/cuke4nuke","authors":"Richard Lawrence","mailing_list_uri":"http://groups.google.com/group/cukes/","documentation_uri":"","wiki_uri":"http://wiki.github.com/richardlawrence/Cuke4Nuke"},{"dependencies":{"runtime":[{"name":"templater","requirements":">= 1.0.0"}],"development":[]},"name":"cucumber-sinatra","downloads":3635,"info":"This little gem will help you to initialize a cucumber environment for a sinatra application. It will generate the required files from templates.","version_downloads":13,"version":"0.4.0","homepage_uri":"http://github.com/bernd/cucumber-sinatra","bug_tracker_uri":null,"source_code_uri":null,"gem_uri":"http://rubygems.org/gems/cucumber-sinatra-0.4.0.gem","project_uri":"http://rubygems.org/gems/cucumber-sinatra","authors":"Bernd Ahlers","mailing_list_uri":null,"documentation_uri":null,"wiki_uri":null}]
@@ -13,7 +13,7 @@
13
13
  </dependency>
14
14
  <dependency>
15
15
  <name>gherkin</name>
16
- <requirements>&gt;= 2.3.8</requirements>
16
+ <requirements>~&gt; 2.4.1</requirements>
17
17
  </dependency>
18
18
  <dependency>
19
19
  <name>json</name>
@@ -27,11 +27,15 @@
27
27
  <development type="array">
28
28
  <dependency>
29
29
  <name>aruba</name>
30
- <requirements>&gt;= 0.3.6</requirements>
30
+ <requirements>~&gt; 0.4.2</requirements>
31
+ </dependency>
32
+ <dependency>
33
+ <name>bcat</name>
34
+ <requirements>= 0.6.1</requirements>
31
35
  </dependency>
32
36
  <dependency>
33
37
  <name>capybara</name>
34
- <requirements>&gt;= 1.0.0.beta1</requirements>
38
+ <requirements>&gt;= 1.0.0</requirements>
35
39
  </dependency>
36
40
  <dependency>
37
41
  <name>nokogiri</name>
@@ -51,27 +55,31 @@
51
55
  </dependency>
52
56
  <dependency>
53
57
  <name>rake</name>
54
- <requirements>&gt;= 0.8.7</requirements>
58
+ <requirements>&gt;= 0.9.2</requirements>
55
59
  </dependency>
56
60
  <dependency>
57
61
  <name>ramaze</name>
58
62
  <requirements>&gt;= 0</requirements>
59
63
  </dependency>
64
+ <dependency>
65
+ <name>rdiscount</name>
66
+ <requirements>= 1.6.8</requirements>
67
+ </dependency>
60
68
  <dependency>
61
69
  <name>rspec</name>
62
70
  <requirements>&gt;= 2.6.0</requirements>
63
71
  </dependency>
64
72
  <dependency>
65
73
  <name>simplecov</name>
66
- <requirements>&gt;= 0.4.1</requirements>
74
+ <requirements>&gt;= 0.4.2</requirements>
67
75
  </dependency>
68
76
  <dependency>
69
77
  <name>sinatra</name>
70
- <requirements>&gt;= 1.2.0</requirements>
78
+ <requirements>&gt;= 1.2.6</requirements>
71
79
  </dependency>
72
80
  <dependency>
73
81
  <name>spork</name>
74
- <requirements>&gt;= 0.8.4</requirements>
82
+ <requirements>&gt;= 0.9.0.rc7</requirements>
75
83
  </dependency>
76
84
  <dependency>
77
85
  <name>syntax</name>
@@ -81,62 +89,37 @@
81
89
  <name>webrat</name>
82
90
  <requirements>&gt;= 0.7.3</requirements>
83
91
  </dependency>
92
+ <dependency>
93
+ <name>yard</name>
94
+ <requirements>= 0.7.1</requirements>
95
+ </dependency>
84
96
  </development>
85
97
  </dependencies>
86
98
  <name>cucumber</name>
87
- <downloads type="integer">689377</downloads>
99
+ <downloads type="integer">754236</downloads>
88
100
  <info>Behaviour Driven Development with elegance and joy</info>
89
- <version-downloads type="integer">7724</version-downloads>
90
- <version>0.10.3</version>
101
+ <version-downloads type="integer">5119</version-downloads>
102
+ <version>1.0.0</version>
91
103
  <homepage-uri>http://cukes.info</homepage-uri>
92
104
  <bug-tracker-uri>http://rspec.lighthouseapp.com/projects/16211/</bug-tracker-uri>
93
- <source-code-uri>http://github.com/aslakhellesoy/cucumber/tree/master</source-code-uri>
94
- <gem-uri>http://rubygems.org/gems/cucumber-0.10.3.gem</gem-uri>
105
+ <source-code-uri>http://github.com/cucumber/cucumber/tree/master</source-code-uri>
106
+ <gem-uri>http://rubygems.org/gems/cucumber-1.0.0.gem</gem-uri>
95
107
  <project-uri>http://rubygems.org/gems/cucumber</project-uri>
96
108
  <authors>Aslak Helles&#248;y</authors>
97
109
  <mailing-list-uri>http://groups.google.com/group/cukes</mailing-list-uri>
98
110
  <documentation-uri>http://cukes.info</documentation-uri>
99
- <wiki-uri>http://wiki.github.com/aslakhellesoy/cucumber</wiki-uri>
100
- </rubygem>
101
- <rubygem>
102
- <dependencies>
103
- <runtime type="array"/>
104
- <development type="array">
105
- <dependency>
106
- <name>cucumber</name>
107
- <requirements>&gt;= 0</requirements>
108
- </dependency>
109
- <dependency>
110
- <name>rspec</name>
111
- <requirements>&gt;= 0</requirements>
112
- </dependency>
113
- </development>
114
- </dependencies>
115
- <name>culerity</name>
116
- <downloads type="integer">378923</downloads>
117
- <info>Culerity integrates Cucumber and Celerity in order to test your application's full stack.</info>
118
- <version-downloads type="integer">142154</version-downloads>
119
- <version>0.2.15</version>
120
- <homepage-uri>http://github.com/langalex/culerity</homepage-uri>
121
- <bug-tracker-uri nil="true"></bug-tracker-uri>
122
- <source-code-uri nil="true"></source-code-uri>
123
- <gem-uri>http://rubygems.org/gems/culerity-0.2.15.gem</gem-uri>
124
- <project-uri>http://rubygems.org/gems/culerity</project-uri>
125
- <authors>Alexander Lang</authors>
126
- <mailing-list-uri nil="true"></mailing-list-uri>
127
- <documentation-uri nil="true"></documentation-uri>
128
- <wiki-uri nil="true"></wiki-uri>
111
+ <wiki-uri>http://wiki.github.com/cucumber/cucumber</wiki-uri>
129
112
  </rubygem>
130
113
  <rubygem>
131
114
  <dependencies>
132
115
  <runtime type="array">
133
116
  <dependency>
134
117
  <name>capybara</name>
135
- <requirements>&gt;= 1.0.0.beta1</requirements>
118
+ <requirements>&gt;= 1.0.0</requirements>
136
119
  </dependency>
137
120
  <dependency>
138
121
  <name>cucumber</name>
139
- <requirements>&gt;= 0.10.3</requirements>
122
+ <requirements>~&gt; 1.0.0</requirements>
140
123
  </dependency>
141
124
  <dependency>
142
125
  <name>nokogiri</name>
@@ -150,15 +133,19 @@
150
133
  <development type="array">
151
134
  <dependency>
152
135
  <name>aruba</name>
153
- <requirements>&gt;= 0.3.6</requirements>
136
+ <requirements>&gt;= 0.4.1</requirements>
154
137
  </dependency>
155
138
  <dependency>
156
139
  <name>bson_ext</name>
157
- <requirements>&gt;= 1.3.0</requirements>
140
+ <requirements>&gt;= 1.3.1</requirements>
158
141
  </dependency>
159
142
  <dependency>
160
143
  <name>bundler</name>
161
- <requirements>&gt;= 1.0.13</requirements>
144
+ <requirements>&gt;= 1.0.15</requirements>
145
+ </dependency>
146
+ <dependency>
147
+ <name>coffee-script</name>
148
+ <requirements>&gt;= 2.2.0</requirements>
162
149
  </dependency>
163
150
  <dependency>
164
151
  <name>database_cleaner</name>
@@ -168,17 +155,21 @@
168
155
  <name>factory_girl</name>
169
156
  <requirements>&gt;= 2.0.0.beta2</requirements>
170
157
  </dependency>
158
+ <dependency>
159
+ <name>jquery-rails</name>
160
+ <requirements>&gt;= 1.0.9</requirements>
161
+ </dependency>
171
162
  <dependency>
172
163
  <name>mongoid</name>
173
164
  <requirements>&gt;= 2.0.2</requirements>
174
165
  </dependency>
175
166
  <dependency>
176
167
  <name>rails</name>
177
- <requirements>&gt;= 3.0.7</requirements>
168
+ <requirements>&gt;= 3.1.0.rc4</requirements>
178
169
  </dependency>
179
170
  <dependency>
180
171
  <name>rake</name>
181
- <requirements>= 0.8.7</requirements>
172
+ <requirements>&gt;= 0.9.2</requirements>
182
173
  </dependency>
183
174
  <dependency>
184
175
  <name>rspec</name>
@@ -186,29 +177,70 @@
186
177
  </dependency>
187
178
  <dependency>
188
179
  <name>rspec-rails</name>
189
- <requirements>&gt;= 2.6.0</requirements>
180
+ <requirements>&gt;= 2.6.1</requirements>
181
+ </dependency>
182
+ <dependency>
183
+ <name>sass</name>
184
+ <requirements>&gt;= 3.1.1</requirements>
190
185
  </dependency>
191
186
  <dependency>
192
187
  <name>sqlite3-ruby</name>
193
188
  <requirements>&gt;= 1.3.3</requirements>
194
189
  </dependency>
190
+ <dependency>
191
+ <name>turn</name>
192
+ <requirements>&gt;= 0.8.2</requirements>
193
+ </dependency>
194
+ <dependency>
195
+ <name>uglifier</name>
196
+ <requirements>&gt;= 0.5.4</requirements>
197
+ </dependency>
195
198
  </development>
196
199
  </dependencies>
197
200
  <name>cucumber-rails</name>
198
- <downloads type="integer">383178</downloads>
201
+ <downloads type="integer">423546</downloads>
199
202
  <info>Cucumber Generators and Runtime for Rails</info>
200
- <version-downloads type="integer">2082</version-downloads>
201
- <version>0.5.1</version>
203
+ <version-downloads type="integer">2778</version-downloads>
204
+ <version>1.0.0</version>
202
205
  <homepage-uri>http://cukes.info</homepage-uri>
203
206
  <bug-tracker-uri>http://github.com/aslakhellesoy/cucumber-rails/issues</bug-tracker-uri>
204
207
  <source-code-uri>http://github.com/aslakhellesoy/cucumber-rails</source-code-uri>
205
- <gem-uri>http://rubygems.org/gems/cucumber-rails-0.5.1.gem</gem-uri>
208
+ <gem-uri>http://rubygems.org/gems/cucumber-rails-1.0.0.gem</gem-uri>
206
209
  <project-uri>http://rubygems.org/gems/cucumber-rails</project-uri>
207
210
  <authors>Aslak Helles&#248;y, Dennis Bl&#246;te, Rob Holland</authors>
208
211
  <mailing-list-uri>http://groups.google.com/group/cukes</mailing-list-uri>
209
212
  <documentation-uri>http://cukes.info/</documentation-uri>
210
213
  <wiki-uri>http://wiki.github.com/aslakhellesoy/cucumber-rails</wiki-uri>
211
214
  </rubygem>
215
+ <rubygem>
216
+ <dependencies>
217
+ <runtime type="array"/>
218
+ <development type="array">
219
+ <dependency>
220
+ <name>cucumber</name>
221
+ <requirements>&gt;= 0</requirements>
222
+ </dependency>
223
+ <dependency>
224
+ <name>rspec</name>
225
+ <requirements>&gt;= 0</requirements>
226
+ </dependency>
227
+ </development>
228
+ </dependencies>
229
+ <name>culerity</name>
230
+ <downloads type="integer">406439</downloads>
231
+ <info>Culerity integrates Cucumber and Celerity in order to test your application's full stack.</info>
232
+ <version-downloads type="integer">165557</version-downloads>
233
+ <version>0.2.15</version>
234
+ <homepage-uri>http://github.com/langalex/culerity</homepage-uri>
235
+ <bug-tracker-uri nil="true"></bug-tracker-uri>
236
+ <source-code-uri nil="true"></source-code-uri>
237
+ <gem-uri>http://rubygems.org/gems/culerity-0.2.15.gem</gem-uri>
238
+ <project-uri>http://rubygems.org/gems/culerity</project-uri>
239
+ <authors>Alexander Lang</authors>
240
+ <mailing-list-uri nil="true"></mailing-list-uri>
241
+ <documentation-uri nil="true"></documentation-uri>
242
+ <wiki-uri nil="true"></wiki-uri>
243
+ </rubygem>
212
244
  <rubygem>
213
245
  <dependencies>
214
246
  <runtime type="array">
@@ -218,6 +250,10 @@
218
250
  </dependency>
219
251
  </runtime>
220
252
  <development type="array">
253
+ <dependency>
254
+ <name>hoe</name>
255
+ <requirements>&gt;= 2.9.4</requirements>
256
+ </dependency>
221
257
  <dependency>
222
258
  <name>rubyforge</name>
223
259
  <requirements>&gt;= 2.0.4</requirements>
@@ -225,14 +261,14 @@
225
261
  </development>
226
262
  </dependencies>
227
263
  <name>ci_reporter</name>
228
- <downloads type="integer">95813</downloads>
264
+ <downloads type="integer">109756</downloads>
229
265
  <info>CI::Reporter is an add-on to Test::Unit, RSpec and Cucumber that allows you to generate XML reports of your test, spec and/or feature runs. The resulting files can be read by a continuous integration system that understands Ant's JUnit report XML format, thus allowing your CI system to track test/spec successes and failures.</info>
230
- <version-downloads type="integer">32014</version-downloads>
231
- <version>1.6.4</version>
266
+ <version-downloads type="integer">2387</version-downloads>
267
+ <version>1.6.5</version>
232
268
  <homepage-uri>http://caldersphere.rubyforge.org/ci_reporter</homepage-uri>
233
269
  <bug-tracker-uri nil="true"></bug-tracker-uri>
234
270
  <source-code-uri nil="true"></source-code-uri>
235
- <gem-uri>http://rubygems.org/gems/ci_reporter-1.6.4.gem</gem-uri>
271
+ <gem-uri>http://rubygems.org/gems/ci_reporter-1.6.5.gem</gem-uri>
236
272
  <project-uri>http://rubygems.org/gems/ci_reporter</project-uri>
237
273
  <authors>Nick Sieger</authors>
238
274
  <mailing-list-uri nil="true"></mailing-list-uri>
@@ -242,6 +278,10 @@
242
278
  <rubygem>
243
279
  <dependencies>
244
280
  <runtime type="array">
281
+ <dependency>
282
+ <name>mail</name>
283
+ <requirements>~&gt; 2.2</requirements>
284
+ </dependency>
245
285
  <dependency>
246
286
  <name>rspec</name>
247
287
  <requirements>~&gt; 2.0</requirements>
@@ -250,14 +290,14 @@
250
290
  <development type="array"/>
251
291
  </dependencies>
252
292
  <name>email_spec</name>
253
- <downloads type="integer">94786</downloads>
293
+ <downloads type="integer">106798</downloads>
254
294
  <info>Easily test email in rspec and cucumber</info>
255
- <version-downloads type="integer">17335</version-downloads>
256
- <version>1.1.1</version>
295
+ <version-downloads type="integer">538</version-downloads>
296
+ <version>1.2.1</version>
257
297
  <homepage-uri>http://github.com/bmabey/email-spec/</homepage-uri>
258
298
  <bug-tracker-uri nil="true"></bug-tracker-uri>
259
299
  <source-code-uri nil="true"></source-code-uri>
260
- <gem-uri>http://rubygems.org/gems/email_spec-1.1.1.gem</gem-uri>
300
+ <gem-uri>http://rubygems.org/gems/email_spec-1.2.1.gem</gem-uri>
261
301
  <project-uri>http://rubygems.org/gems/email_spec</project-uri>
262
302
  <authors>Ben Mabey, Aaron Gibralter, Mischa Fierer</authors>
263
303
  <mailing-list-uri nil="true"></mailing-list-uri>
@@ -332,9 +372,9 @@
332
372
  </development>
333
373
  </dependencies>
334
374
  <name>pickle</name>
335
- <downloads type="integer">87467</downloads>
375
+ <downloads type="integer">93373</downloads>
336
376
  <info>Easy model creation and reference in your cucumber features</info>
337
- <version-downloads type="integer">7556</version-downloads>
377
+ <version-downloads type="integer">11003</version-downloads>
338
378
  <version>0.4.7</version>
339
379
  <homepage-uri>http://github.com/ianwhite/pickle</homepage-uri>
340
380
  <bug-tracker-uri>http://ianwhite.lighthouseapp.com/projects/25941-pickle</bug-tracker-uri>
@@ -365,9 +405,9 @@
365
405
  </development>
366
406
  </dependencies>
367
407
  <name>autotest-growl</name>
368
- <downloads type="integer">70217</downloads>
408
+ <downloads type="integer">76044</downloads>
369
409
  <info>This gem aims to improve support for Growl notifications by autotest.</info>
370
- <version-downloads type="integer">29503</version-downloads>
410
+ <version-downloads type="integer">34652</version-downloads>
371
411
  <version>0.2.9</version>
372
412
  <homepage-uri>http://www.bitcetera.com/products/autotest-growl</homepage-uri>
373
413
  <bug-tracker-uri>https://forge.bitcetera.com/projects/show/autotest-growl</bug-tracker-uri>
@@ -379,6 +419,35 @@
379
419
  <documentation-uri>http://www.bitcetera.com/en/products/autotest-growl</documentation-uri>
380
420
  <wiki-uri></wiki-uri>
381
421
  </rubygem>
422
+ <rubygem>
423
+ <dependencies>
424
+ <runtime type="array">
425
+ <dependency>
426
+ <name>capybara</name>
427
+ <requirements>&gt;= 1.0.0</requirements>
428
+ </dependency>
429
+ <dependency>
430
+ <name>rspec-rails</name>
431
+ <requirements>&gt;= 2.5.0</requirements>
432
+ </dependency>
433
+ </runtime>
434
+ <development type="array"/>
435
+ </dependencies>
436
+ <name>steak</name>
437
+ <downloads type="integer">35457</downloads>
438
+ <info>Steak is a minimal extension of RSpec-Rails that adds several conveniences to do acceptance testing of Rails applications using Capybara. It's an alternative to Cucumber in plain Ruby.</info>
439
+ <version-downloads type="integer">502</version-downloads>
440
+ <version>2.0.0</version>
441
+ <homepage-uri>http://github.com/cavalle/steak</homepage-uri>
442
+ <bug-tracker-uri>http://github.com/cavalle/steak/issues</bug-tracker-uri>
443
+ <source-code-uri>http://github.com/cavalle/steak</source-code-uri>
444
+ <gem-uri>http://rubygems.org/gems/steak-2.0.0.gem</gem-uri>
445
+ <project-uri>http://rubygems.org/gems/steak</project-uri>
446
+ <authors>Luismi Cavall&#233;</authors>
447
+ <mailing-list-uri>http://groups.google.com/group/steakrb</mailing-list-uri>
448
+ <documentation-uri>http://rdoc.info/projects/cavalle/steak</documentation-uri>
449
+ <wiki-uri></wiki-uri>
450
+ </rubygem>
382
451
  <rubygem>
383
452
  <dependencies>
384
453
  <runtime type="array"/>
@@ -462,9 +531,9 @@
462
531
  </development>
463
532
  </dependencies>
464
533
  <name>vcr</name>
465
- <downloads type="integer">24824</downloads>
534
+ <downloads type="integer">28044</downloads>
466
535
  <info>VCR provides a simple API to record and replay your test suite's HTTP interactions. It works with a variety of HTTP client libraries, HTTP stubbing libraries and testing frameworks.</info>
467
- <version-downloads type="integer">537</version-downloads>
536
+ <version-downloads type="integer">2068</version-downloads>
468
537
  <version>1.10.0</version>
469
538
  <homepage-uri>http://github.com/myronmarston/vcr</homepage-uri>
470
539
  <bug-tracker-uri>https://github.com/myronmarston/vcr/issues</bug-tracker-uri>
@@ -479,36 +548,90 @@
479
548
  <rubygem>
480
549
  <dependencies>
481
550
  <runtime type="array">
551
+ <dependency>
552
+ <name>bcat</name>
553
+ <requirements>&gt;= 0.6.1</requirements>
554
+ </dependency>
482
555
  <dependency>
483
556
  <name>childprocess</name>
484
- <requirements>&gt;= 0.1.7</requirements>
557
+ <requirements>&gt;= 0.1.9</requirements>
485
558
  </dependency>
486
559
  <dependency>
487
560
  <name>cucumber</name>
488
- <requirements>&gt;= 0.10.0</requirements>
561
+ <requirements>&gt;= 0.10.7</requirements>
562
+ </dependency>
563
+ <dependency>
564
+ <name>rdiscount</name>
565
+ <requirements>&gt;= 1.6.8</requirements>
489
566
  </dependency>
490
567
  <dependency>
491
568
  <name>rspec</name>
492
- <requirements>&gt;= 2.5.0</requirements>
569
+ <requirements>&gt;= 2.6.0</requirements>
493
570
  </dependency>
494
571
  </runtime>
495
572
  <development type="array"/>
496
573
  </dependencies>
497
574
  <name>aruba</name>
498
- <downloads type="integer">15364</downloads>
575
+ <downloads type="integer">17344</downloads>
499
576
  <info>CLI Steps for Cucumber, hand-crafted for you in Aruba</info>
500
- <version-downloads type="integer">929</version-downloads>
501
- <version>0.3.6</version>
577
+ <version-downloads type="integer">142</version-downloads>
578
+ <version>0.4.2</version>
502
579
  <homepage-uri>http://github.com/aslakhellesoy/aruba</homepage-uri>
503
580
  <bug-tracker-uri>http://github.com/aslakhellesoy/aruba/issues</bug-tracker-uri>
504
581
  <source-code-uri>http://github.com/aslakhellesoy/aruba.git</source-code-uri>
505
- <gem-uri>http://rubygems.org/gems/aruba-0.3.6.gem</gem-uri>
582
+ <gem-uri>http://rubygems.org/gems/aruba-0.4.2.gem</gem-uri>
506
583
  <project-uri>http://rubygems.org/gems/aruba</project-uri>
507
584
  <authors>Aslak Helles&#248;y, David Chelimsky, Mike Sassak</authors>
508
585
  <mailing-list-uri>http://groups.google.com/group/cukes</mailing-list-uri>
509
586
  <documentation-uri>http://github.com/aslakhellesoy/aruba/blob/master/README.rdoc</documentation-uri>
510
587
  <wiki-uri></wiki-uri>
511
588
  </rubygem>
589
+ <rubygem>
590
+ <dependencies>
591
+ <runtime type="array">
592
+ <dependency>
593
+ <name>cucumber</name>
594
+ <requirements>&gt;= 0.10.2</requirements>
595
+ </dependency>
596
+ </runtime>
597
+ <development type="array">
598
+ <dependency>
599
+ <name>bundler</name>
600
+ <requirements>&gt;= 1.0.13</requirements>
601
+ </dependency>
602
+ <dependency>
603
+ <name>celerity</name>
604
+ <requirements>&gt;= 0.8.9</requirements>
605
+ </dependency>
606
+ <dependency>
607
+ <name>jruby-openssl</name>
608
+ <requirements>&gt;= 0.7.4</requirements>
609
+ </dependency>
610
+ <dependency>
611
+ <name>rake</name>
612
+ <requirements>&gt;= 0.8.7</requirements>
613
+ </dependency>
614
+ <dependency>
615
+ <name>rspec</name>
616
+ <requirements>&gt;= 2.5.0</requirements>
617
+ </dependency>
618
+ </development>
619
+ </dependencies>
620
+ <name>cuke4duke</name>
621
+ <downloads type="integer">13615</downloads>
622
+ <info>Write Cucumber Step Definitions in Java, Scala, Groovy, Rhino Javascript, Clojure or Ioke</info>
623
+ <version-downloads type="integer">566</version-downloads>
624
+ <version>0.4.4</version>
625
+ <homepage-uri>http://cukes.info</homepage-uri>
626
+ <bug-tracker-uri nil="true"></bug-tracker-uri>
627
+ <source-code-uri nil="true"></source-code-uri>
628
+ <gem-uri>http://rubygems.org/gems/cuke4duke-0.4.4.gem</gem-uri>
629
+ <project-uri>http://rubygems.org/gems/cuke4duke</project-uri>
630
+ <authors>Aslak Helles&#248;y</authors>
631
+ <mailing-list-uri nil="true"></mailing-list-uri>
632
+ <documentation-uri nil="true"></documentation-uri>
633
+ <wiki-uri nil="true"></wiki-uri>
634
+ </rubygem>
512
635
  <rubygem>
513
636
  <dependencies>
514
637
  <runtime type="array">
@@ -541,16 +664,16 @@
541
664
  </development>
542
665
  </dependencies>
543
666
  <name>specjour</name>
544
- <downloads type="integer">11806</downloads>
667
+ <downloads type="integer">12456</downloads>
545
668
  <info> Specjour splits your RSpec suite across multiple machines, and multiple
546
669
  cores per machine, to run super-parallel-fast! Also works with Cucumber.
547
670
  </info>
548
- <version-downloads type="integer">465</version-downloads>
549
- <version>0.4.0</version>
671
+ <version-downloads type="integer">53</version-downloads>
672
+ <version>0.4.1</version>
550
673
  <homepage-uri>https://github.com/sandro/specjour</homepage-uri>
551
674
  <bug-tracker-uri nil="true"></bug-tracker-uri>
552
675
  <source-code-uri nil="true"></source-code-uri>
553
- <gem-uri>http://rubygems.org/gems/specjour-0.4.0.gem</gem-uri>
676
+ <gem-uri>http://rubygems.org/gems/specjour-0.4.1.gem</gem-uri>
554
677
  <project-uri>http://rubygems.org/gems/specjour</project-uri>
555
678
  <authors>Sandro Turriate</authors>
556
679
  <mailing-list-uri nil="true"></mailing-list-uri>
@@ -560,6 +683,10 @@
560
683
  <rubygem>
561
684
  <dependencies>
562
685
  <runtime type="array">
686
+ <dependency>
687
+ <name>bundler</name>
688
+ <requirements>~&gt; 1.0</requirements>
689
+ </dependency>
563
690
  <dependency>
564
691
  <name>gherkin</name>
565
692
  <requirements>~&gt; 2.3</requirements>
@@ -576,71 +703,25 @@
576
703
  </dependency>
577
704
  <dependency>
578
705
  <name>rspec</name>
579
- <requirements>~&gt; 2.5</requirements>
706
+ <requirements>~&gt; 2.5.0</requirements>
580
707
  </dependency>
581
708
  </development>
582
709
  </dependencies>
583
710
  <name>stepdown</name>
584
- <downloads type="integer">10964</downloads>
711
+ <downloads type="integer">11095</downloads>
585
712
  <info>Stepdown allows you to see where your most used Cucumber steps are, your unused steps and how they are clustered</info>
586
- <version-downloads type="integer">20</version-downloads>
587
- <version>0.5.0</version>
713
+ <version-downloads type="integer">14</version-downloads>
714
+ <version>0.6.1</version>
588
715
  <homepage-uri>http://stepdown.lineonpoint.com</homepage-uri>
589
716
  <bug-tracker-uri>https://github.com/seancaffery/step-down/issues</bug-tracker-uri>
590
717
  <source-code-uri>https://github.com/seancaffery/step-down</source-code-uri>
591
- <gem-uri>http://rubygems.org/gems/stepdown-0.5.0.gem</gem-uri>
718
+ <gem-uri>http://rubygems.org/gems/stepdown-0.6.1.gem</gem-uri>
592
719
  <project-uri>http://rubygems.org/gems/stepdown</project-uri>
593
720
  <authors>Sean Caffery</authors>
594
721
  <mailing-list-uri>http://groups.google.com/group/stepdowngem/topics</mailing-list-uri>
595
722
  <documentation-uri>http://stepdown.lineonpoint.com</documentation-uri>
596
723
  <wiki-uri></wiki-uri>
597
724
  </rubygem>
598
- <rubygem>
599
- <dependencies>
600
- <runtime type="array">
601
- <dependency>
602
- <name>cucumber</name>
603
- <requirements>&gt;= 0.10.2</requirements>
604
- </dependency>
605
- </runtime>
606
- <development type="array">
607
- <dependency>
608
- <name>bundler</name>
609
- <requirements>&gt;= 1.0.13</requirements>
610
- </dependency>
611
- <dependency>
612
- <name>celerity</name>
613
- <requirements>&gt;= 0.8.9</requirements>
614
- </dependency>
615
- <dependency>
616
- <name>jruby-openssl</name>
617
- <requirements>&gt;= 0.7.4</requirements>
618
- </dependency>
619
- <dependency>
620
- <name>rake</name>
621
- <requirements>&gt;= 0.8.7</requirements>
622
- </dependency>
623
- <dependency>
624
- <name>rspec</name>
625
- <requirements>&gt;= 2.5.0</requirements>
626
- </dependency>
627
- </development>
628
- </dependencies>
629
- <name>cuke4duke</name>
630
- <downloads type="integer">11239</downloads>
631
- <info>Write Cucumber Step Definitions in Java, Scala, Groovy, Rhino Javascript, Clojure or Ioke</info>
632
- <version-downloads type="integer">157</version-downloads>
633
- <version>0.4.4</version>
634
- <homepage-uri>http://cukes.info</homepage-uri>
635
- <bug-tracker-uri nil="true"></bug-tracker-uri>
636
- <source-code-uri nil="true"></source-code-uri>
637
- <gem-uri>http://rubygems.org/gems/cuke4duke-0.4.4.gem</gem-uri>
638
- <project-uri>http://rubygems.org/gems/cuke4duke</project-uri>
639
- <authors>Aslak Helles&#248;y</authors>
640
- <mailing-list-uri nil="true"></mailing-list-uri>
641
- <documentation-uri nil="true"></documentation-uri>
642
- <wiki-uri nil="true"></wiki-uri>
643
- </rubygem>
644
725
  <rubygem>
645
726
  <dependencies>
646
727
  <runtime type="array">
@@ -685,14 +766,14 @@
685
766
  </development>
686
767
  </dependencies>
687
768
  <name>cucumber-nagios</name>
688
- <downloads type="integer">10124</downloads>
769
+ <downloads type="integer">11001</downloads>
689
770
  <info>cucumber-nagios helps you write behavioural tests for your systems and infrastructure, that can be plugged into Nagios.</info>
690
- <version-downloads type="integer">376</version-downloads>
691
- <version>0.9.0</version>
771
+ <version-downloads type="integer">208</version-downloads>
772
+ <version>0.9.2</version>
692
773
  <homepage-uri>http://cucumber-nagios.org/</homepage-uri>
693
774
  <bug-tracker-uri>http://github.com/auxesis/cucumber-nagios/issues</bug-tracker-uri>
694
775
  <source-code-uri>http://github.com/auxesis/cucumber-nagios</source-code-uri>
695
- <gem-uri>http://rubygems.org/gems/cucumber-nagios-0.9.0.gem</gem-uri>
776
+ <gem-uri>http://rubygems.org/gems/cucumber-nagios-0.9.2.gem</gem-uri>
696
777
  <project-uri>http://rubygems.org/gems/cucumber-nagios</project-uri>
697
778
  <authors>Lindsay Holmwood</authors>
698
779
  <mailing-list-uri></mailing-list-uri>
@@ -704,20 +785,20 @@
704
785
  <runtime type="array">
705
786
  <dependency>
706
787
  <name>nokogiri</name>
707
- <requirements>&gt;= 1.4.4</requirements>
788
+ <requirements>&gt;= 1.4.1</requirements>
708
789
  </dependency>
709
790
  </runtime>
710
791
  <development type="array"/>
711
792
  </dependencies>
712
793
  <name>cuporter</name>
713
- <downloads type="integer">7043</downloads>
794
+ <downloads type="integer">7445</downloads>
714
795
  <info>Scrapes Cucumber *.feature files to build reports on tag usage and test inventory</info>
715
- <version-downloads type="integer">28</version-downloads>
716
- <version>0.3.6</version>
796
+ <version-downloads type="integer">33</version-downloads>
797
+ <version>0.3.9</version>
717
798
  <homepage-uri>http://github.com/twcamper/cuporter</homepage-uri>
718
799
  <bug-tracker-uri></bug-tracker-uri>
719
800
  <source-code-uri></source-code-uri>
720
- <gem-uri>http://rubygems.org/gems/cuporter-0.3.6.gem</gem-uri>
801
+ <gem-uri>http://rubygems.org/gems/cuporter-0.3.9.gem</gem-uri>
721
802
  <project-uri>http://rubygems.org/gems/cuporter</project-uri>
722
803
  <authors>Tim Camper</authors>
723
804
  <mailing-list-uri></mailing-list-uri>
@@ -730,9 +811,9 @@
730
811
  <development type="array"/>
731
812
  </dependencies>
732
813
  <name>coulda</name>
733
- <downloads type="integer">6922</downloads>
814
+ <downloads type="integer">7463</downloads>
734
815
  <info>Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse</info>
735
- <version-downloads type="integer">598</version-downloads>
816
+ <version-downloads type="integer">808</version-downloads>
736
817
  <version>0.6.3</version>
737
818
  <homepage-uri>http://coulda.tiggerpalace.com</homepage-uri>
738
819
  <bug-tracker-uri nil="true"></bug-tracker-uri>
@@ -744,6 +825,48 @@
744
825
  <documentation-uri nil="true"></documentation-uri>
745
826
  <wiki-uri nil="true"></wiki-uri>
746
827
  </rubygem>
828
+ <rubygem>
829
+ <dependencies>
830
+ <runtime type="array">
831
+ <dependency>
832
+ <name>cucumber</name>
833
+ <requirements>&gt;= 0.10</requirements>
834
+ </dependency>
835
+ <dependency>
836
+ <name>guard</name>
837
+ <requirements>&gt;= 0.4.0</requirements>
838
+ </dependency>
839
+ </runtime>
840
+ <development type="array">
841
+ <dependency>
842
+ <name>bundler</name>
843
+ <requirements>~&gt; 1.0</requirements>
844
+ </dependency>
845
+ <dependency>
846
+ <name>guard-rspec</name>
847
+ <requirements>~&gt; 0.4</requirements>
848
+ </dependency>
849
+ <dependency>
850
+ <name>rspec</name>
851
+ <requirements>~&gt; 2.6</requirements>
852
+ </dependency>
853
+ </development>
854
+ </dependencies>
855
+ <name>guard-cucumber</name>
856
+ <downloads type="integer">6836</downloads>
857
+ <info>Guard::Cucumber automatically run your features (much like autotest)</info>
858
+ <version-downloads type="integer">615</version-downloads>
859
+ <version>0.5.0</version>
860
+ <homepage-uri>http://github.com/netzpirat/guard-cucumber</homepage-uri>
861
+ <bug-tracker-uri nil="true"></bug-tracker-uri>
862
+ <source-code-uri nil="true"></source-code-uri>
863
+ <gem-uri>http://rubygems.org/gems/guard-cucumber-0.5.0.gem</gem-uri>
864
+ <project-uri>http://rubygems.org/gems/guard-cucumber</project-uri>
865
+ <authors>Michael Kessler</authors>
866
+ <mailing-list-uri nil="true"></mailing-list-uri>
867
+ <documentation-uri nil="true"></documentation-uri>
868
+ <wiki-uri nil="true"></wiki-uri>
869
+ </rubygem>
747
870
  <rubygem>
748
871
  <dependencies>
749
872
  <runtime type="array"/>
@@ -755,9 +878,9 @@
755
878
  </development>
756
879
  </dependencies>
757
880
  <name>rspactor</name>
758
- <downloads type="integer">6142</downloads>
881
+ <downloads type="integer">6507</downloads>
759
882
  <info>RSpactor is a command line tool to automatically run your changed specs &amp; cucumber features (much like autotest).</info>
760
- <version-downloads type="integer">1319</version-downloads>
883
+ <version-downloads type="integer">1391</version-downloads>
761
884
  <version>0.6.4</version>
762
885
  <homepage-uri>http://github.com/thibaudgg/rspactor</homepage-uri>
763
886
  <bug-tracker-uri>http://github.com/thibaudgg/rspactor/issues</bug-tracker-uri>
@@ -817,9 +940,9 @@
817
940
  </development>
818
941
  </dependencies>
819
942
  <name>branston</name>
820
- <downloads type="integer">6042</downloads>
943
+ <downloads type="integer">6399</downloads>
821
944
  <info>An agile user story tracker that generates gherkin files and step definitions for use with the cucumber testing framework.</info>
822
- <version-downloads type="integer">29</version-downloads>
945
+ <version-downloads type="integer">40</version-downloads>
823
946
  <version>0.6.6</version>
824
947
  <homepage-uri>http://github.com/futurechimp/branston</homepage-uri>
825
948
  <bug-tracker-uri nil="true"></bug-tracker-uri>
@@ -851,9 +974,9 @@
851
974
  </development>
852
975
  </dependencies>
853
976
  <name>pickler</name>
854
- <downloads type="integer">6259</downloads>
977
+ <downloads type="integer">6561</downloads>
855
978
  <info>Synchronize between Cucumber and Pivotal Tracker</info>
856
- <version-downloads type="integer">1277</version-downloads>
979
+ <version-downloads type="integer">1513</version-downloads>
857
980
  <version>0.2.0</version>
858
981
  <homepage-uri>http://github.com/tpope/pickler</homepage-uri>
859
982
  <bug-tracker-uri>http://github.com/tpope/pickler/issues</bug-tracker-uri>
@@ -871,14 +994,14 @@
871
994
  <development type="array"/>
872
995
  </dependencies>
873
996
  <name>cucumber_factory</name>
874
- <downloads type="integer">5798</downloads>
997
+ <downloads type="integer">6262</downloads>
875
998
  <info>Cucumber Factory allows you to create ActiveRecord models from your Cucumber features without writing step definitions for each model.</info>
876
- <version-downloads type="integer">928</version-downloads>
877
- <version>1.7.4</version>
999
+ <version-downloads type="integer">59</version-downloads>
1000
+ <version>1.8.0</version>
878
1001
  <homepage-uri>http://github.com/makandra/cucumber_factory</homepage-uri>
879
1002
  <bug-tracker-uri nil="true"></bug-tracker-uri>
880
1003
  <source-code-uri nil="true"></source-code-uri>
881
- <gem-uri>http://rubygems.org/gems/cucumber_factory-1.7.4.gem</gem-uri>
1004
+ <gem-uri>http://rubygems.org/gems/cucumber_factory-1.8.0.gem</gem-uri>
882
1005
  <project-uri>http://rubygems.org/gems/cucumber_factory</project-uri>
883
1006
  <authors>Henning Koch</authors>
884
1007
  <mailing-list-uri nil="true"></mailing-list-uri>
@@ -930,6 +1053,14 @@
930
1053
  <name>flexmock</name>
931
1054
  <requirements>&gt;= 0</requirements>
932
1055
  </dependency>
1056
+ <dependency>
1057
+ <name>guard</name>
1058
+ <requirements>&gt;= 0</requirements>
1059
+ </dependency>
1060
+ <dependency>
1061
+ <name>guard-test</name>
1062
+ <requirements>&gt;= 0</requirements>
1063
+ </dependency>
933
1064
  <dependency>
934
1065
  <name>rack-test</name>
935
1066
  <requirements>&gt;= 0</requirements>
@@ -949,20 +1080,57 @@
949
1080
  </development>
950
1081
  </dependencies>
951
1082
  <name>testbot</name>
952
- <downloads type="integer">5364</downloads>
1083
+ <downloads type="integer">5832</downloads>
953
1084
  <info>Testbot is a test distribution tool that works with Rails, RSpec, RSpec2, Test::Unit and Cucumber.</info>
954
- <version-downloads type="integer">96</version-downloads>
955
- <version>0.5.6</version>
1085
+ <version-downloads type="integer">20</version-downloads>
1086
+ <version>0.5.7</version>
956
1087
  <homepage-uri>http://github.com/joakimk/testbot</homepage-uri>
957
1088
  <bug-tracker-uri>https://github.com/joakimk/testbot/issues</bug-tracker-uri>
958
1089
  <source-code-uri>https://github.com/joakimk/testbot</source-code-uri>
959
- <gem-uri>http://rubygems.org/gems/testbot-0.5.6.gem</gem-uri>
1090
+ <gem-uri>http://rubygems.org/gems/testbot-0.5.7.gem</gem-uri>
960
1091
  <project-uri>http://rubygems.org/gems/testbot</project-uri>
961
1092
  <authors>Joakim Kolsj&#246;</authors>
962
1093
  <mailing-list-uri></mailing-list-uri>
963
1094
  <documentation-uri>https://github.com/joakimk/testbot</documentation-uri>
964
1095
  <wiki-uri>https://github.com/joakimk/testbot/wiki</wiki-uri>
965
1096
  </rubygem>
1097
+ <rubygem>
1098
+ <dependencies>
1099
+ <runtime type="array">
1100
+ <dependency>
1101
+ <name>cucumber</name>
1102
+ <requirements>&gt;= 0.7.5</requirements>
1103
+ </dependency>
1104
+ <dependency>
1105
+ <name>gherkin</name>
1106
+ <requirements>&gt;= 2.2.9</requirements>
1107
+ </dependency>
1108
+ <dependency>
1109
+ <name>yard</name>
1110
+ <requirements>&gt;= 0.6.3</requirements>
1111
+ </dependency>
1112
+ </runtime>
1113
+ <development type="array"/>
1114
+ </dependencies>
1115
+ <name>cucumber-in-the-yard</name>
1116
+ <downloads type="integer">5373</downloads>
1117
+ <info>
1118
+ Cucumber-In-The-Yard is a YARD extension that processes Cucumber Features, Scenarios, Steps,
1119
+ Step Definitions, Transforms, and Tags and provides a documentation interface that allows you
1120
+ easily view and investigate the test suite. This tools hopes to bridge the gap of being able
1121
+ to provide your feature descriptions to your Product Owners and Stakeholders. </info>
1122
+ <version-downloads type="integer">381</version-downloads>
1123
+ <version>1.7.8</version>
1124
+ <homepage-uri>http://github.com/burtlo/Cucumber-In-The-Yard</homepage-uri>
1125
+ <bug-tracker-uri nil="true"></bug-tracker-uri>
1126
+ <source-code-uri nil="true"></source-code-uri>
1127
+ <gem-uri>http://rubygems.org/gems/cucumber-in-the-yard-1.7.8.gem</gem-uri>
1128
+ <project-uri>http://rubygems.org/gems/cucumber-in-the-yard</project-uri>
1129
+ <authors>Franklin Webber</authors>
1130
+ <mailing-list-uri nil="true"></mailing-list-uri>
1131
+ <documentation-uri nil="true"></documentation-uri>
1132
+ <wiki-uri nil="true"></wiki-uri>
1133
+ </rubygem>
966
1134
  <rubygem>
967
1135
  <dependencies>
968
1136
  <runtime type="array">
@@ -986,9 +1154,9 @@
986
1154
  <development type="array"/>
987
1155
  </dependencies>
988
1156
  <name>iCuke</name>
989
- <downloads type="integer">5177</downloads>
1157
+ <downloads type="integer">5507</downloads>
990
1158
  <info>Cucumber support for iPhone applications</info>
991
- <version-downloads type="integer">787</version-downloads>
1159
+ <version-downloads type="integer">837</version-downloads>
992
1160
  <version>0.6.3</version>
993
1161
  <homepage-uri>http://github.com/unboxed/iCuke</homepage-uri>
994
1162
  <bug-tracker-uri></bug-tracker-uri>
@@ -1003,36 +1171,41 @@
1003
1171
  <rubygem>
1004
1172
  <dependencies>
1005
1173
  <runtime type="array">
1174
+ <dependency>
1175
+ <name>capybara</name>
1176
+ <requirements>&gt;= 0</requirements>
1177
+ </dependency>
1006
1178
  <dependency>
1007
1179
  <name>cucumber</name>
1008
- <requirements>&gt;= 0.7.5</requirements>
1180
+ <requirements>&gt;= 0</requirements>
1009
1181
  </dependency>
1010
1182
  <dependency>
1011
- <name>gherkin</name>
1012
- <requirements>&gt;= 2.2.9</requirements>
1183
+ <name>machinist</name>
1184
+ <requirements>&gt;= 0</requirements>
1185
+ </dependency>
1186
+ </runtime>
1187
+ <development type="array">
1188
+ <dependency>
1189
+ <name>rspec</name>
1190
+ <requirements>&gt;= 1.2.9</requirements>
1013
1191
  </dependency>
1014
1192
  <dependency>
1015
1193
  <name>yard</name>
1016
- <requirements>&gt;= 0.6.3</requirements>
1194
+ <requirements>&gt;= 0</requirements>
1017
1195
  </dependency>
1018
- </runtime>
1019
- <development type="array"/>
1196
+ </development>
1020
1197
  </dependencies>
1021
- <name>cucumber-in-the-yard</name>
1022
- <downloads type="integer">4949</downloads>
1023
- <info>
1024
- Cucumber-In-The-Yard is a YARD extension that processes Cucumber Features, Scenarios, Steps,
1025
- Step Definitions, Transforms, and Tags and provides a documentation interface that allows you
1026
- easily view and investigate the test suite. This tools hopes to bridge the gap of being able
1027
- to provide your feature descriptions to your Product Owners and Stakeholders. </info>
1028
- <version-downloads type="integer">325</version-downloads>
1029
- <version>1.7.8</version>
1030
- <homepage-uri>http://github.com/burtlo/Cucumber-In-The-Yard</homepage-uri>
1198
+ <name>sandwich</name>
1199
+ <downloads type="integer">5113</downloads>
1200
+ <info>Yup, cucumber helpers</info>
1201
+ <version-downloads type="integer">397</version-downloads>
1202
+ <version>0.0.20</version>
1203
+ <homepage-uri>http://github.com/david/sandwich</homepage-uri>
1031
1204
  <bug-tracker-uri nil="true"></bug-tracker-uri>
1032
1205
  <source-code-uri nil="true"></source-code-uri>
1033
- <gem-uri>http://rubygems.org/gems/cucumber-in-the-yard-1.7.8.gem</gem-uri>
1034
- <project-uri>http://rubygems.org/gems/cucumber-in-the-yard</project-uri>
1035
- <authors>Franklin Webber</authors>
1206
+ <gem-uri>http://rubygems.org/gems/sandwich-0.0.20.gem</gem-uri>
1207
+ <project-uri>http://rubygems.org/gems/sandwich</project-uri>
1208
+ <authors>David Leal</authors>
1036
1209
  <mailing-list-uri nil="true"></mailing-list-uri>
1037
1210
  <documentation-uri nil="true"></documentation-uri>
1038
1211
  <wiki-uri nil="true"></wiki-uri>
@@ -1040,41 +1213,45 @@
1040
1213
  <rubygem>
1041
1214
  <dependencies>
1042
1215
  <runtime type="array">
1043
- <dependency>
1044
- <name>capybara</name>
1045
- <requirements>&gt;= 0</requirements>
1046
- </dependency>
1047
1216
  <dependency>
1048
1217
  <name>cucumber</name>
1049
1218
  <requirements>&gt;= 0</requirements>
1050
1219
  </dependency>
1051
1220
  <dependency>
1052
- <name>machinist</name>
1053
- <requirements>&gt;= 0</requirements>
1221
+ <name>ruby-progressbar</name>
1222
+ <requirements>~&gt; 0.0.9</requirements>
1054
1223
  </dependency>
1055
1224
  </runtime>
1056
1225
  <development type="array">
1057
1226
  <dependency>
1058
- <name>rspec</name>
1059
- <requirements>&gt;= 1.2.9</requirements>
1227
+ <name>bundler</name>
1228
+ <requirements>&gt;= 0</requirements>
1060
1229
  </dependency>
1061
1230
  <dependency>
1062
- <name>yard</name>
1231
+ <name>jeweler</name>
1232
+ <requirements>~&gt; 1.5.1</requirements>
1233
+ </dependency>
1234
+ <dependency>
1235
+ <name>rcov</name>
1236
+ <requirements>&gt;= 0</requirements>
1237
+ </dependency>
1238
+ <dependency>
1239
+ <name>rspec</name>
1063
1240
  <requirements>&gt;= 0</requirements>
1064
1241
  </dependency>
1065
1242
  </development>
1066
1243
  </dependencies>
1067
- <name>sandwich</name>
1068
- <downloads type="integer">4892</downloads>
1069
- <info>Yup, cucumber helpers</info>
1070
- <version-downloads type="integer">381</version-downloads>
1071
- <version>0.0.20</version>
1072
- <homepage-uri>http://github.com/david/sandwich</homepage-uri>
1244
+ <name>fuubar-cucumber</name>
1245
+ <downloads type="integer">4746</downloads>
1246
+ <info>the instafailing Cucumber progress bar formatter</info>
1247
+ <version-downloads type="integer">314</version-downloads>
1248
+ <version>0.0.10</version>
1249
+ <homepage-uri>http://github.com/martinciu/fuubar-cucumber</homepage-uri>
1073
1250
  <bug-tracker-uri nil="true"></bug-tracker-uri>
1074
1251
  <source-code-uri nil="true"></source-code-uri>
1075
- <gem-uri>http://rubygems.org/gems/sandwich-0.0.20.gem</gem-uri>
1076
- <project-uri>http://rubygems.org/gems/sandwich</project-uri>
1077
- <authors>David Leal</authors>
1252
+ <gem-uri>http://rubygems.org/gems/fuubar-cucumber-0.0.10.gem</gem-uri>
1253
+ <project-uri>http://rubygems.org/gems/fuubar-cucumber</project-uri>
1254
+ <authors>Marcin Ciunelis</authors>
1078
1255
  <mailing-list-uri nil="true"></mailing-list-uri>
1079
1256
  <documentation-uri nil="true"></documentation-uri>
1080
1257
  <wiki-uri nil="true"></wiki-uri>
@@ -1103,9 +1280,9 @@
1103
1280
  </development>
1104
1281
  </dependencies>
1105
1282
  <name>shoe</name>
1106
- <downloads type="integer">4458</downloads>
1283
+ <downloads type="integer">4648</downloads>
1107
1284
  <info>Configuration-free Rake tasks that read your gemspec. These tasks re-use built-in Rubygems functionality so you can be confident you're shipping what you think you are.</info>
1108
- <version-downloads type="integer">66</version-downloads>
1285
+ <version-downloads type="integer">77</version-downloads>
1109
1286
  <version>0.8.0</version>
1110
1287
  <homepage-uri>http://github.com/matthewtodd/shoe</homepage-uri>
1111
1288
  <bug-tracker-uri></bug-tracker-uri>
@@ -1117,48 +1294,6 @@
1117
1294
  <documentation-uri>http://rubydoc.info/gems/shoe/frames</documentation-uri>
1118
1295
  <wiki-uri></wiki-uri>
1119
1296
  </rubygem>
1120
- <rubygem>
1121
- <dependencies>
1122
- <runtime type="array">
1123
- <dependency>
1124
- <name>cucumber</name>
1125
- <requirements>~&gt; 0.10.0</requirements>
1126
- </dependency>
1127
- <dependency>
1128
- <name>guard</name>
1129
- <requirements>~&gt; 0.3.0</requirements>
1130
- </dependency>
1131
- </runtime>
1132
- <development type="array">
1133
- <dependency>
1134
- <name>bundler</name>
1135
- <requirements>~&gt; 1.0.10</requirements>
1136
- </dependency>
1137
- <dependency>
1138
- <name>guard-rspec</name>
1139
- <requirements>~&gt; 0.3.1</requirements>
1140
- </dependency>
1141
- <dependency>
1142
- <name>rspec</name>
1143
- <requirements>~&gt; 2.5.0</requirements>
1144
- </dependency>
1145
- </development>
1146
- </dependencies>
1147
- <name>guard-cucumber</name>
1148
- <downloads type="integer">4334</downloads>
1149
- <info>Guard::Cucumber automatically run your features (much like autotest)</info>
1150
- <version-downloads type="integer">369</version-downloads>
1151
- <version>0.3.2</version>
1152
- <homepage-uri>http://github.com/netzpirat/guard-cucumber</homepage-uri>
1153
- <bug-tracker-uri nil="true"></bug-tracker-uri>
1154
- <source-code-uri nil="true"></source-code-uri>
1155
- <gem-uri>http://rubygems.org/gems/guard-cucumber-0.3.2.gem</gem-uri>
1156
- <project-uri>http://rubygems.org/gems/guard-cucumber</project-uri>
1157
- <authors>Michael Kessler</authors>
1158
- <mailing-list-uri nil="true"></mailing-list-uri>
1159
- <documentation-uri nil="true"></documentation-uri>
1160
- <wiki-uri nil="true"></wiki-uri>
1161
- </rubygem>
1162
1297
  <rubygem>
1163
1298
  <dependencies>
1164
1299
  <runtime type="array">
@@ -1172,7 +1307,7 @@
1172
1307
  </dependency>
1173
1308
  <dependency>
1174
1309
  <name>cucumber</name>
1175
- <requirements>&gt;= 0.9.3</requirements>
1310
+ <requirements>&gt;= 0.10.3</requirements>
1176
1311
  </dependency>
1177
1312
  </runtime>
1178
1313
  <development type="array">
@@ -1183,66 +1318,20 @@
1183
1318
  </development>
1184
1319
  </dependencies>
1185
1320
  <name>aruba-jbb</name>
1186
- <downloads type="integer">4208</downloads>
1321
+ <downloads type="integer">4563</downloads>
1187
1322
  <info>Fork of Aruba, Cucumber steps for testing CLI applications.</info>
1188
- <version-downloads type="integer">62</version-downloads>
1189
- <version>0.2.6.14</version>
1323
+ <version-downloads type="integer">24</version-downloads>
1324
+ <version>0.2.7.01</version>
1190
1325
  <homepage-uri>http://github.com/byrnejb/aruba</homepage-uri>
1191
1326
  <bug-tracker-uri nil="true"></bug-tracker-uri>
1192
1327
  <source-code-uri nil="true"></source-code-uri>
1193
- <gem-uri>http://rubygems.org/gems/aruba-jbb-0.2.6.14.gem</gem-uri>
1328
+ <gem-uri>http://rubygems.org/gems/aruba-jbb-0.2.7.01.gem</gem-uri>
1194
1329
  <project-uri>http://rubygems.org/gems/aruba-jbb</project-uri>
1195
1330
  <authors>Aslak Helles&#248;y, David Chelimsky, James B. Byrne, Mike Sassak</authors>
1196
1331
  <mailing-list-uri nil="true"></mailing-list-uri>
1197
1332
  <documentation-uri nil="true"></documentation-uri>
1198
1333
  <wiki-uri nil="true"></wiki-uri>
1199
1334
  </rubygem>
1200
- <rubygem>
1201
- <dependencies>
1202
- <runtime type="array">
1203
- <dependency>
1204
- <name>cucumber</name>
1205
- <requirements>&gt;= 0</requirements>
1206
- </dependency>
1207
- <dependency>
1208
- <name>ruby-progressbar</name>
1209
- <requirements>~&gt; 0.0.9</requirements>
1210
- </dependency>
1211
- </runtime>
1212
- <development type="array">
1213
- <dependency>
1214
- <name>bundler</name>
1215
- <requirements>&gt;= 0</requirements>
1216
- </dependency>
1217
- <dependency>
1218
- <name>jeweler</name>
1219
- <requirements>~&gt; 1.5.1</requirements>
1220
- </dependency>
1221
- <dependency>
1222
- <name>rcov</name>
1223
- <requirements>&gt;= 0</requirements>
1224
- </dependency>
1225
- <dependency>
1226
- <name>rspec</name>
1227
- <requirements>&gt;= 0</requirements>
1228
- </dependency>
1229
- </development>
1230
- </dependencies>
1231
- <name>fuubar-cucumber</name>
1232
- <downloads type="integer">4024</downloads>
1233
- <info>the instafailing Cucumber progress bar formatter</info>
1234
- <version-downloads type="integer">2339</version-downloads>
1235
- <version>0.0.9</version>
1236
- <homepage-uri>http://github.com/martinciu/fuubar-cucumber</homepage-uri>
1237
- <bug-tracker-uri nil="true"></bug-tracker-uri>
1238
- <source-code-uri nil="true"></source-code-uri>
1239
- <gem-uri>http://rubygems.org/gems/fuubar-cucumber-0.0.9.gem</gem-uri>
1240
- <project-uri>http://rubygems.org/gems/fuubar-cucumber</project-uri>
1241
- <authors>Marcin Ciunelis</authors>
1242
- <mailing-list-uri nil="true"></mailing-list-uri>
1243
- <documentation-uri nil="true"></documentation-uri>
1244
- <wiki-uri nil="true"></wiki-uri>
1245
- </rubygem>
1246
1335
  <rubygem>
1247
1336
  <dependencies>
1248
1337
  <runtime type="array">
@@ -1266,9 +1355,9 @@
1266
1355
  <development type="array"/>
1267
1356
  </dependencies>
1268
1357
  <name>cuke4nuke</name>
1269
- <downloads type="integer">3917</downloads>
1358
+ <downloads type="integer">4098</downloads>
1270
1359
  <info>Runs Cucumber with .NET step definitions.</info>
1271
- <version-downloads type="integer">617</version-downloads>
1360
+ <version-downloads type="integer">671</version-downloads>
1272
1361
  <version>0.4.0</version>
1273
1362
  <homepage-uri>http://github.com/richardlawrence/Cuke4Nuke</homepage-uri>
1274
1363
  <bug-tracker-uri>http://github.com/richardlawrence/Cuke4Nuke/issues</bug-tracker-uri>
@@ -1291,52 +1380,18 @@
1291
1380
  <development type="array"/>
1292
1381
  </dependencies>
1293
1382
  <name>cucumber-sinatra</name>
1294
- <downloads type="integer">3395</downloads>
1383
+ <downloads type="integer">3635</downloads>
1295
1384
  <info>This little gem will help you to initialize a cucumber environment for a sinatra application. It will generate the required files from templates.</info>
1296
- <version-downloads type="integer">188</version-downloads>
1297
- <version>0.3.1</version>
1385
+ <version-downloads type="integer">13</version-downloads>
1386
+ <version>0.4.0</version>
1298
1387
  <homepage-uri>http://github.com/bernd/cucumber-sinatra</homepage-uri>
1299
1388
  <bug-tracker-uri nil="true"></bug-tracker-uri>
1300
1389
  <source-code-uri nil="true"></source-code-uri>
1301
- <gem-uri>http://rubygems.org/gems/cucumber-sinatra-0.3.1.gem</gem-uri>
1390
+ <gem-uri>http://rubygems.org/gems/cucumber-sinatra-0.4.0.gem</gem-uri>
1302
1391
  <project-uri>http://rubygems.org/gems/cucumber-sinatra</project-uri>
1303
1392
  <authors>Bernd Ahlers</authors>
1304
1393
  <mailing-list-uri nil="true"></mailing-list-uri>
1305
1394
  <documentation-uri nil="true"></documentation-uri>
1306
1395
  <wiki-uri nil="true"></wiki-uri>
1307
1396
  </rubygem>
1308
- <rubygem>
1309
- <dependencies>
1310
- <runtime type="array">
1311
- <dependency>
1312
- <name>cucumber</name>
1313
- <requirements>~&gt; 0.9</requirements>
1314
- </dependency>
1315
- <dependency>
1316
- <name>webrat</name>
1317
- <requirements>~&gt; 0.7</requirements>
1318
- </dependency>
1319
- </runtime>
1320
- <development type="array">
1321
- <dependency>
1322
- <name>rspec</name>
1323
- <requirements>~&gt; 1.3</requirements>
1324
- </dependency>
1325
- </development>
1326
- </dependencies>
1327
- <name>cucumber-screenshot</name>
1328
- <downloads type="integer">3359</downloads>
1329
- <info>Extension for Cucumber (http://cukes.info/) that makes it easy to take HTML snapshots and also to use Webkit to capture PNG screenshots of your web application during tests</info>
1330
- <version-downloads type="integer">566</version-downloads>
1331
- <version>0.3.4</version>
1332
- <homepage-uri>http://github.com/mocoso/cucumber-screenshot</homepage-uri>
1333
- <bug-tracker-uri nil="true"></bug-tracker-uri>
1334
- <source-code-uri nil="true"></source-code-uri>
1335
- <gem-uri>http://rubygems.org/gems/cucumber-screenshot-0.3.4.gem</gem-uri>
1336
- <project-uri>http://rubygems.org/gems/cucumber-screenshot</project-uri>
1337
- <authors>Joel Chippindale</authors>
1338
- <mailing-list-uri nil="true"></mailing-list-uri>
1339
- <documentation-uri nil="true"></documentation-uri>
1340
- <wiki-uri nil="true"></wiki-uri>
1341
- </rubygem>
1342
1397
  </rubygems>