torquespec 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,8 @@
1
+ # TorqueSpec #
2
+
3
+ TorqueSpec helps you build integration tests for your TorqueBox
4
+ applications. It encapsulates the control of a JBoss AS instance, and
5
+ makes it easy to deploy your apps before running your RSpec examples
6
+ and undeploy them afterwards.
7
+
8
+ More docs coming soon.
@@ -92,7 +92,7 @@ module TorqueSpec
92
92
 
93
93
  def http req
94
94
  res = Net::HTTP.start(TorqueSpec.host, TorqueSpec.port) do |http|
95
- http.read_timeout = 120
95
+ http.read_timeout = 180
96
96
  http.request(req)
97
97
  end
98
98
  unless Net::HTTPSuccess === res
@@ -1,3 +1,3 @@
1
1
  module TorqueSpec
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: torquespec
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jim Crossley
@@ -44,6 +44,7 @@ extra_rdoc_files: []
44
44
  files:
45
45
  - .gitignore
46
46
  - Gemfile
47
+ - README.md
47
48
  - Rakefile
48
49
  - lib/torquespec.rb
49
50
  - lib/torquespec/rspec.rb