mainline 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/Manifest.txt +0 -1
  2. data/lib/mainline.rb +1 -1
  3. metadata +1 -2
  4. data/mainline.gemspec +0 -48
@@ -13,7 +13,6 @@ lib/mainline/core.rb
13
13
  lib/mainline/integration_test.rb
14
14
  lib/mainline/nil_server.rb
15
15
  lib/mainline/server.rb
16
- mainline.gemspec
17
16
  rails/init.rb
18
17
  script/console
19
18
  script/destroy
@@ -6,7 +6,7 @@ require 'rack'
6
6
 
7
7
  module Mainline
8
8
 
9
- VERSION = "1.0.0"
9
+ VERSION = "1.0.1"
10
10
 
11
11
  def initialize()
12
12
  @started = false
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mainline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Gaffney
@@ -84,7 +84,6 @@ files:
84
84
  - lib/mainline/integration_test.rb
85
85
  - lib/mainline/nil_server.rb
86
86
  - lib/mainline/server.rb
87
- - mainline.gemspec
88
87
  - rails/init.rb
89
88
  - script/console
90
89
  - script/destroy
@@ -1,48 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{mainline}
5
- s.version = "1.0.0"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Mike Gaffney", "Dr Nic Williams"]
9
- s.cert_chain = ["/home/mgaffney/.gem/gem-public_cert.pem"]
10
- s.date = %q{2010-02-03}
11
- s.description = %q{Mainline is a rails plugin which exposes your rails app via webrick to allow
12
- testing with browser automators such as Selenium or Watir. Mainline allows
13
- your rails actions to run in the same transaction as your unit tests so you
14
- can use fixtures, factories, or whatever.}
15
- s.email = ["mike@uberu.com", "drnicwilliams@gmail.com"]
16
- s.extra_rdoc_files = ["History.txt", "Manifest.txt"]
17
- s.files = [".loadpath", ".project", "History.txt", "MIT-LICENSE", "Manifest.txt", "README.rdoc", "Rakefile", "init.rb", "lib/mainline.rb", "lib/mainline/config.rb", "lib/mainline/connection_pool.rb", "lib/mainline/core.rb", "lib/mainline/integration_test.rb", "lib/mainline/nil_server.rb", "lib/mainline/server.rb", "rails/init.rb", "script/console", "script/destroy", "script/generate", "spec/mainline_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/rspec.rake", "test/mainline/config_test.rb", "test/mainline/core_test.rb", "test/mainline/nil_server_test.rb", "test/test_helper.rb", "test/test_config.rb", "test/test_nil_server.rb", "test/test_core.rb"]
18
- s.homepage = %q{http://github.com/gaffo/mainline}
19
- s.rdoc_options = ["--main", "README.rdoc"]
20
- s.require_paths = ["lib"]
21
- s.rubyforge_project = %q{mainline}
22
- s.rubygems_version = %q{1.3.5}
23
- s.signing_key = %q{/home/mgaffney/.gem/gem-private_key.pem}
24
- s.summary = %q{Mainline is a rails plugin which exposes your rails app via webrick to allow testing with browser automators such as Selenium or Watir}
25
- s.test_files = ["test/test_config.rb", "test/test_nil_server.rb", "test/test_helper.rb", "test/test_core.rb"]
26
-
27
- if s.respond_to? :specification_version then
28
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
29
- s.specification_version = 3
30
-
31
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
32
- s.add_runtime_dependency(%q<rack>, [">= 0"])
33
- s.add_development_dependency(%q<rubyforge>, [">= 2.0.3"])
34
- s.add_development_dependency(%q<gemcutter>, [">= 0.3.0"])
35
- s.add_development_dependency(%q<hoe>, [">= 2.5.0"])
36
- else
37
- s.add_dependency(%q<rack>, [">= 0"])
38
- s.add_dependency(%q<rubyforge>, [">= 2.0.3"])
39
- s.add_dependency(%q<gemcutter>, [">= 0.3.0"])
40
- s.add_dependency(%q<hoe>, [">= 2.5.0"])
41
- end
42
- else
43
- s.add_dependency(%q<rack>, [">= 0"])
44
- s.add_dependency(%q<rubyforge>, [">= 2.0.3"])
45
- s.add_dependency(%q<gemcutter>, [">= 0.3.0"])
46
- s.add_dependency(%q<hoe>, [">= 2.5.0"])
47
- end
48
- end