integra 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/integra.gemspec +2 -2
- data/lib/integra.rb +8 -0
- data/lib/integra/autorun.rb +0 -5
- data/lib/integra/commands.rb +7 -0
- data/lib/integra/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8346f3fb796113fe37f325b411e8ceec1db1951
|
|
4
|
+
data.tar.gz: 264f04cf1b3ca2647f8c47f96fd90ef21c7dd57e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28ceec58e124ecadd54ab010612ed773c3c01b3e3eb988c915e4f60b64a273c36305e743ff87888d9ee43df2625ff0d164b307e6490d5d691b04a093270cf142
|
|
7
|
+
data.tar.gz: c80d834b90b81921cfe04ca60962563f9d4f4e1023505c0dc129028b72b22be66a316b306436461387d53e39a8f74916bea8187ea32915429cab375165fdf0bc
|
data/README.md
CHANGED
data/integra.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Endel Dreyer"]
|
|
10
10
|
spec.email = ["endel.dreyer@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.description = %q{A nice set of defaults for integration tests, no matter what language your application is written in.}
|
|
13
|
-
spec.summary = %q{Integration testing tools.}
|
|
12
|
+
spec.description = %q{A nice set of defaults for webapp integration tests, no matter what language your application is written in.}
|
|
13
|
+
spec.summary = %q{Integration testing tools for webapps.}
|
|
14
14
|
spec.homepage = "https://github.com/endel/integra"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
data/lib/integra.rb
CHANGED
|
@@ -15,6 +15,14 @@ module Integra
|
|
|
15
15
|
@logger = Logger.new
|
|
16
16
|
@config = Config.new(options)
|
|
17
17
|
|
|
18
|
+
#
|
|
19
|
+
# When user enters with a path or file as argument, just run it.
|
|
20
|
+
#
|
|
21
|
+
unless Commands.respond_to?(options[:command])
|
|
22
|
+
options[:args] << options[:command]
|
|
23
|
+
options[:command] = :run
|
|
24
|
+
end
|
|
25
|
+
|
|
18
26
|
Commands.send(options[:command], options)
|
|
19
27
|
end
|
|
20
28
|
|
data/lib/integra/autorun.rb
CHANGED
data/lib/integra/commands.rb
CHANGED
data/lib/integra/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: integra
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Endel Dreyer
|
|
@@ -136,7 +136,7 @@ dependencies:
|
|
|
136
136
|
- - '>='
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: '0'
|
|
139
|
-
description: A nice set of defaults for integration tests, no matter what language
|
|
139
|
+
description: A nice set of defaults for webapp integration tests, no matter what language
|
|
140
140
|
your application is written in.
|
|
141
141
|
email:
|
|
142
142
|
- endel.dreyer@gmail.com
|
|
@@ -191,6 +191,6 @@ rubyforge_project:
|
|
|
191
191
|
rubygems_version: 2.1.8
|
|
192
192
|
signing_key:
|
|
193
193
|
specification_version: 4
|
|
194
|
-
summary: Integration testing tools.
|
|
194
|
+
summary: Integration testing tools for webapps.
|
|
195
195
|
test_files: []
|
|
196
196
|
has_rdoc:
|