baleen 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: d42b96c06c8175ef15d7ec8240771e4ffa5fd596
4
- data.tar.gz: f3e181c9f73e1611e2852a432da6e15239749525
5
- SHA512:
6
- metadata.gz: 24edf1fe8a21baa0e6f7b76716084d163c49b74daff316ab2be3d784722b00a23e12d071e762dea52a8ef1156d61050edff06f3a309b67be8c20d60e984c37d3
7
- data.tar.gz: 4dd3b940c44dd665c1150b1fa45798dbf88c9d40bd2088210b1b54e7f166a0a402fa004b8248783ceca97472216698f750e229f69dc66b5b097de1a4bc7ab928
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ OGY2MjEyY2M5YTgyY2FiMzBiZTE1ODI4NjkxNTE3M2NiMjVlMDU2Mg==
5
+ data.tar.gz: !binary |-
6
+ ZTFhNWQ0M2NjYzk5MDgxMDIxNzNmYjEyNzZhMjU1OWQyOWQyNjZiZQ==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ ZjM1MzFjMzJkZjU0ZThmNDNlMmQxMWM3OTc3ZTRkM2I5YzRlZDNmMTgzN2Ux
10
+ MGYwZDdkMDAzNmYxZWFhODYwNjc4MGVmNjhiMDc2YjBiN2U0NGQyY2M1NDY4
11
+ YjM3ODdmY2VhZWMyYzE3ZDJhYWFhMWM3NTliMDUxMTA0NDlhMjA=
12
+ data.tar.gz: !binary |-
13
+ M2M1ZGM4YzcxZjViYzMwOWI1NjE2ZDBiZTc5MzlkMzIyYTIxOWU1OTIwZTlk
14
+ MjYwZDEzNDhiNDk4MDA4OTczNmQ5MzBiMTU1ZmYxNWNlYTYzMGYxODEzMjVj
15
+ YTRkYWVmNjE0ZjM1OWMzN2JmMjdkZTAxNjg2ODUyYTcwYWU1OTc=
data/Dockerfile CHANGED
@@ -1,3 +1,2 @@
1
1
  From kimh/baleen-server
2
- Expose 5533:5533
3
- Entrypoint ["/bin/bash", "-c", "source /etc/profile && baleen-server start --docker_host 172.17.42.1 && tail -f /dev/null"]
2
+ Entrypoint ["/bin/bash", "-c", "source /etc/profile && baleen-server start --docker_host 172.17.42.1"]
data/README.md CHANGED
@@ -1,23 +1,38 @@
1
1
  # Baleen
2
- Baleen is a test runner powered by Docker and Celluloid::IO.
3
- Baleen allows you to run ruby standard tests such as Cucumber or Rspec in totally isolated environment and parallel.
2
+ Baleen is a test runner powered by Docker.
4
3
 
5
- By using Baleen, you can tests in a dedicated linux container, so each test will not affect the state of other tests.
6
- Also, Baleen will speed up your tests since multiple containers run their tests in parallel.
4
+ Baleen allows you to run ruby standard tests such as Cucumber or Rspec in totally **isolated** environment and **parallel**.
5
+
6
+ ## Supproted Framework
7
+ As of v0.2, only cucumber tests are supported.
7
8
 
8
9
  ## Requirement
9
- * Linux machine with Docker installed
10
+ * Docker v0.7 or later
10
11
  * ruby-2.0.0 or later
11
12
 
12
13
  ## Installation
13
14
 
14
15
  gem install baleen
15
16
 
17
+ This will install both client and server.
18
+
19
+ ## Basic workflow
20
+
21
+ ####1. Creating Docker image
22
+ First of all, you need to create a Docker image where you can run your app's tests. Since Baleen run actual tests by running the image, you need to have latest test codes on the image. Baleen's CI feature will help this by automatically updating your image whenever you push to specific branch of github.
23
+
24
+ ####2. Running baleen-server
25
+ baleen-server will wait for client to run tests
26
+
27
+ ####3. Trigger test from baleen cli
28
+ Requests baleen-server to run specific tests. You can do by either using on-the-fly or project. (explained later)
29
+
16
30
  ## Usage
17
- Baleen is server-client model. You need to run baleen-server which talks Docker API and baleen (client) to put your request to the server.
31
+ Baleen is server-client model. By installing baleen gem, you will get two executables: baleen-server (server) and baleen (client).
32
+
33
+ You use baleen-server which receives request from client and interacts Docker via remote API.
18
34
 
19
- #### Running Baleen server
20
- You can run baleen server with baleen-server command.
35
+ #### baleen-server
21
36
 
22
37
  $ baleen-server start
23
38
 
@@ -26,94 +41,267 @@ baleen-server will take below options
26
41
  * --docker_host: specify url or ip of server where Docker server is running. Default: 127.0.0.1
27
42
  * --docker_port: specify port that Docker server is listening to. Default: 4243
28
43
  * --port: specify port that Baleen server is listening to. Default: 5533
29
- * --debug: you can specify this option to enable debug mode to print out debug message to console. No argument is required. Default: disabled
44
+ * --dir: working directory for docker-server. Default: ./baleen
45
+ * --project_file: specify file path for project. Default: ~/baleen.yml
46
+ * --ci: specify whether running CI server to receive github post receive hook. Default: false
47
+ * --ci-port: specify port to listen github post-receive hook. Default: 4567
48
+ * --log-level: specify log level. It is should be either "debug", "warn", or "error"
49
+ * --daemon: running baleen-server on background. Default: false
30
50
 
31
- #### Running Baleen client
32
- You can run baleen client with simply baleen command. baleen command will take one subcommand to specify which kind of test you want to run on baleen server. With v0.0,1. only cucucmber subcommand is available.
51
+ #### baleen
33
52
 
34
- $ baleen cucumber --image kimh/baleen-poc --files features --work_dir /git/baleen/poc --before_command "source /etc/profile" --concurrency 6
53
+ $ baleen subcommand --option1 --option2
35
54
 
36
- baleen command wil take below options
55
+ baleen command will take two subcommands
56
+
57
+ * project: specify project to run
58
+
59
+ **project** subcommand will take one more subcommand to specify project name
60
+
61
+ * cucumber: run cucumber tests
62
+
63
+ **cucumber** subcommand wil take following options
37
64
 
38
- * --port: specify port number of baleen server. Default: 5533
39
65
  * --image: specify the name of image that you want to use to run your tests. Mandatory option
40
66
  * --files: specify directory or file of tests that you want to run. Default is /features with v0.0.1
41
67
  * --work_dir: specify working directory. Default: ./
42
68
  * --before_command: specify commands that you want to execute before running your tests. Default: nil
43
69
  * --concurrency: specify number of containers that you want to run at the same time. Default: 2
44
70
 
45
- ## Try Baleen with POC app
46
- If you pull kimh/baleen-poc image to your Docker, you can see how baleen works. In this example, you are running Docker at 192.168.0.1, baleen-server @192.168.0.2 that points to the Docker server, and baleen client to point to the baleen server.
71
+ Both subcommands can take following options
47
72
 
48
- First, pull the image at Docker server
73
+ * --baleen_server: specify host where baleen-server is running. Default: 127.0.0.1
74
+ * --port: specify port number of baleen server. Default: 5533
75
+ * --debug: running client on debug mode. As of v0.2, debugging only printing celluloid debug messages to console.
49
76
 
50
- $ docker pull kimh/baleen-poc
77
+ ### Using Baleen
78
+ There are mainly two ways to use baleen
51
79
 
52
- By pulling kimh/baleen-poc, you will have a container that has the latest baleen project, installed under /git.
53
- You need to run Docker with API enabled (Docker server listens 127.0.0.1 by default) by modifying /etc/init/docker.conf.
80
+ * on-the-fly: You pass options to baleen-server from baleen cli.
81
+ * project: You write baleen.yml file for projects that will be loaded baleen-server at boot time.
54
82
 
55
- $ vi /etc/init/docker.conf
83
+ #### On-the-fly
84
+ With on-the-fly way, you will use baleen cli and passes options. Benefit of this approach is you can change options flexibly. This is suitable when you need to figure out what options you need to pass to run your tests successfully.
85
+
86
+ Here is an example to use baleen cli to let baleen-server to run test on the fly. With this, you are running cucumber tests by using kimh/baleen-poc Docker image and running 6 containers, each container running one feature, at the same time.
87
+
88
+ $ baleen cucumber --image kimh/baleen-poc --files features --work_dir /git/baleen/poc --before_command "source /etc/profile" --concurrency 6
89
+
90
+ #### Project
91
+ By using project, you can save test configurations in a yaml file which is loaded by baleen-server at boot time. After that, you can kick the project from baleen cli simply by specifying project name like this.
92
+
93
+ $ baleen project my-project
94
+
95
+ Project file consists of project name section that has 3 sub sections (runner, framework, and ci) and each sub section has more sections. You can specify multiple projects in a single file. Here is an example of project file.
96
+
97
+ # Project name section
98
+ baleen-poc:
99
+ # Runner section
100
+ runner:
101
+ image: "kimh/baleen-poc"
102
+ work_dir: /baleen-poc
103
+ concurrency: 3
104
+ before_command: |
105
+ source /etc/profile
106
+ export RAILS_ENV=test
107
+ bundle exec rake db:migrate
108
+
109
+ # Framework section
110
+ framework:
111
+ type: cucumber
112
+ features: ./features/t1.feature
113
+
114
+ # CI section
115
+ ci:
116
+ build: true
117
+ url: https://github.com/kimh/baleen-poc
118
+ repo: baleen-poc
119
+ branch: master
120
+
121
+ ##### Project name section
122
+ You must have one project name section to specify the name of project.
123
+
124
+ Under project section, you should have 3 sub sections. Each section has mandatory and optional sections. If you don't specify optional sections, it follows the same default value as the equivalent baleen cli option if exists.
125
+ ##### Runner section
126
+ You must have one runner section. Runner section has following sub sections.
127
+
128
+ _Mandatory_
129
+
130
+ * image: Name of Docker image. This is equivalent to --image option of baleen cli.
131
+
132
+ _Optional_
133
+
134
+ * work_dir: Working directory. This is equivalent to --work_dir option of baleen cli.
135
+ * concurrency: Number of concurrency. This is equivalent to --concurrency option of baleen cli.
136
+ * before_command: Specify commands that you want to be executed before running tests. Note that you can use block syntax of yaml to specify multiple commands. This is equivalent to --before_command option of baleen cli.
137
+
138
+ ##### Framework section
139
+ You must have one framework section to specify settings for test frameworks to run.
140
+
141
+ _Mandatory_
142
+
143
+ * type: Specify the name of test framework. As of v0.2, only cucumber is allowed to specify. This is equivalent to cucumber subcommand of baleen cli.
144
+
145
+
146
+ _Optional_
147
+
148
+ Below sections are optional. If you don't specify, it follows the same default value as the equivalent baleen cli option.
149
+
150
+ * featutes: Specify feature files to be run. This section is only valid only when you specify cucumber at type. This is equivalent to --files option of baleen cli.
56
151
 
57
- description "Docker daemon"
152
+ ##### CI section
153
+ You must have one ci section to specify CI (continuous integration) setting. Note that this section will be ignored if your don't give --ci option to baleen-server.
58
154
 
59
- start on filesystem or runlevel [2345]
155
+ _Mandatory_
156
+
157
+ * repo: Name of repository.
158
+ * url: URL of your github repository to pull.
159
+
160
+ _Optional_
161
+
162
+ * build: Specify whether you want to receive github post receive hook to run your projects automatically. This is equivalent to --ci option of baleen-server command.
163
+ * branch: Branch to pull and use it for tests.
164
+
165
+ ## Try Baleen
166
+ Please try Baleen and give me your feedback!!
167
+
168
+ In this section, you will use baleen to run cucumber tests of [poc](https://github.com/kimh/baleen-poc "baleen-poc app"). baleen-poc is a fake app with some cucumber features to show how baleen runs cucumber tests.
169
+
170
+ Here, I am assuming two different scenarios: Linux user and Mac user. If "Only for Mac user", Linux user can skip the section. Otherwise, both users have to do the section.
171
+
172
+ #### Installing Docker
173
+ First of all, you need to install Docker. Please follow [official page](https://www.docker.io/gettingstarted/#h_installation "instruction at official page").
174
+
175
+ #### Enable remote API
176
+ Docker only allows access through unix socket by default. Since baleen relies on Docker remote API, you need to enable the access through TCP.
177
+
178
+ Open _/etc/init/docker.conf_ and modify **DOCKER_OPTS**.
179
+
180
+ $ vi /etc/init/docker.conf
181
+ description "Docker daemon"
182
+
183
+ start on filesystem and started lxc-net
60
184
  stop on runlevel [!2345]
61
185
 
62
186
  respawn
63
187
 
64
188
  script
65
- /usr/bin/docker -d -H=tcp://0.0.0.0:4243/ # Add this line
66
- #/usr/bin/docker -d # and comment out this line
189
+ DOCKER=/usr/bin/$UPSTART_JOB
190
+ DOCKER_OPTS="-H tcp://0.0.0.0:4243 -H unix:///var/run/docker.sock" # Add this line
191
+ if [ -f /etc/default/$UPSTART_JOB ]; then
192
+ . /etc/default/$UPSTART_JOB
193
+ fi
194
+ "$DOCKER" -d $DOCKER_OPTS
67
195
  end script
68
196
 
69
- And restart your machine to apply the new configuration.
197
+ Restart docker
198
+
199
+ $ restart docker
200
+
201
+ #### Configure port forwarding for Vagrant (Only for Mac user)
202
+ _You can skip this step if you use Linux_
203
+
204
+ Add following line to Vagrant.configure block to forward 5533 port
70
205
 
71
- Next, run baleen-server. Make sure you specify correct ip of the machine that is running Docker.
206
+ config.vm.network :forwarded_port, guest: 5533, host: 5533
72
207
 
73
- $ baleen-server --docker-host 192.168.0.1
208
+ And run Vagrant and Docker.
74
209
 
75
- Finally, run baleen. Make sure to specify correct ip of the machine that is running baleen-server. Below command will run all features under /git/baleen/poc with three containers.
210
+ #### Pull images
211
+
212
+ $ docker pull kimh/baleen-server
213
+ $ docker pull kimh/baleen-poc
214
+
215
+ #### Running baleen-server container
216
+
217
+ $ docker run -i -t -p 5533:5533 kimh/baleen-server
218
+
219
+ #### Use baleen cli and run baleen-poc project
220
+
221
+ $ baleen project baleen-poc
222
+ Start container f77b2608137e
223
+ Start container 722f5d4a8662
224
+ Start container 85f8778d797d
225
+ Start container 4aa0aebbf725
226
+ Start container 693055e07f84
227
+ Finish container 722f5d4a8662
228
+ Finish container 85f8778d797d
229
+ Finish container 693055e07f84
230
+ Finish container 4aa0aebbf725
231
+ Finish container f77b2608137e
232
+ Start container a2c45645d42a
233
+ Start container cf34f905be5a
234
+ Start container 636d390ed150
235
+ Start container 1f506e49f156
236
+ Start container 887295220ca6
237
+ Finish container 1f506e49f156
238
+ Finish container 887295220ca6
239
+ Finish container 636d390ed150
240
+ Finish container cf34f905be5a
241
+ Finish container a2c45645d42a
242
+ Start container e6ada0b3405e
243
+ Finish container e6ada0b3405e
76
244
 
77
- $ baleen cucumber --host 192.168.0.2 --image kimh/baleen-poc --work_dir /git/baleen/poc --before_command "export RAILS_ENV=test; source /etc/profile" --concurrency 3
78
245
  [Summary]
79
246
  Result: Pass
80
- Time: 0min 38sec
81
- 12 containers
247
+ Time: 0min 41sec
82
248
 
83
249
  [Details]
84
- Id: 5a836a088480f557bf79a00b0c6e34b36e8432f53ee8b5231b8983d902ae21d9
250
+ Id: f77b2608137e
85
251
  status code: 0
86
- feature file: features/io_bound.feature
87
- logs:
252
+ feature file: ./features/t6.feature
253
+
254
+ Id: 722f5d4a8662
255
+ status code: 0
256
+ feature file: ./features/t1.feature
257
+
258
+ STDOUT:
88
259
  ------------------------------------
89
- Rack::File headers parameter replaces cache_control after Rack 1.5.
90
260
  Using the default profile...
91
- Feature: Benchmark IO intensive feature
261
+ Feature: t1
92
262
 
93
- Scenario: Benchmark for IO bound operation # features/io_bound.feature:2
94
- Then io intensive operation # features/step_definitions/fake_test_steps.rb:20
263
+ Scenario: Benchmark for IO bound operation # ./features/t1.feature:2
264
+ Then io intensive operation # features/step_definitions/fake_test_steps.rb:24
95
265
 
96
- 1 scenario (1 passed)
97
- 1 step (1 passed)
98
- 0m1.556s
266
+ Scenario: Benchmark for CPU bound operation # ./features/t1.feature:5
267
+ Then cpu intensive operation # features/step_definitions/fake_test_steps.rb:9
99
268
 
100
- Id: 1e25993136553319379a07efd61fbc2b86094151fa25df4da0fc613f8c4fe87c
101
- status code: 0
102
- feature file: features/io_bound.feature
103
- logs:
269
+ Scenario: Benchmark for IO bound operation # ./features/t1.feature:8
270
+ Then io intensive operation # features/step_definitions/fake_test_steps.rb:24
271
+
272
+ Scenario: Benchmark for CPU bound operation # ./features/t1.feature:11
273
+ Then cpu intensive operation # features/step_definitions/fake_test_steps.rb:9
274
+
275
+ 4 scenarios (4 passed)
276
+ 4 steps (4 passed)
277
+ 0m4.723s
278
+
279
+ STDERR:
104
280
  ------------------------------------
105
281
  Rack::File headers parameter replaces cache_control after Rack 1.5.
106
- Using the default profile...
107
- Feature: Benchmark IO intensive feature
108
282
 
109
- Scenario: Benchmark for IO bound operation # features/io_bound.feature:2
110
- Then io intensive operation # features/step_definitions/fake_test_steps.rb:20
283
+ ....snip.....
284
+
285
+ ### How Baleen works (briefly explained)
286
+ So how baleen-poc tests are run?
111
287
 
112
- 1 scenario (1 passed)
113
- 1 step (1 passed)
114
- 0m1.518s
288
+ ####Step 1. Breaking up features/ directoires
289
+ First, baleen-server needs to know how many test files exist under the directory specified by features section of baleen.yml.
290
+ To do this, it runs a container by using the image specified at image section and run __find ./features__ bash command.
291
+
292
+ ####Step 2. Run containers
293
+ baleen-server will run containers to run actual tests. It depends on your configuration, but the most simple command for containers are like this.
294
+
295
+ $ cd work_dir && bundle exec cucumber $feature_file
296
+
297
+ where $feature_file is each cucumber file passed from step 1. baleen-server will run proper number of containers according to concurrency.
298
+
299
+ ####Step 3. Wait containers
300
+ baleen-server then monitor and wait for each container to finish given test. This will be done asynchronously thanks to Celluloid.
301
+
302
+ ####Step 4. Report result
303
+ when all containers finish running tests, it collects STDOUT of all containers to see the rest result and display to user.
115
304
 
116
- ....snip.....
117
305
 
118
306
  ## Contributing
119
307
 
@@ -124,5 +312,3 @@ Finally, run baleen. Make sure to specify correct ip of the machine that is runn
124
312
  5. Create new Pull Request
125
313
  6. Work hard!!
126
314
 
127
-
128
-
@@ -1,46 +1,29 @@
1
- # baleen.yml: Configuration file to run baleen
2
- #
3
- # This file is used to specify the configuration for your baleen job.
4
- # The file has three top sections and config file must have each section
5
- #
6
- # base:
7
- # Mandatory
8
- # baleen-server: IP address or host of baleen server
9
- #
10
- # Optional
11
- # port: port that baleen server is listening. Default: 5533
12
- #
13
- # runner:
14
- # Mandatory
15
- # image: name of image to run Docker container where your tests will be run
16
- #
17
- # Optional
18
- # work_dir: working directory of container. Default: ./
19
- # concurrency: number of containers to run at one time. Default: 2
20
- # before_command: commands to run before running your tests.
21
- #
22
- # framework:
23
- # Mandatory
24
- # type: your test framework
25
- #
26
- # Optional
27
- # features: place of your feature files when your framework type is cucumber. Default: ./features
28
- #
1
+ #### Sample baleen project file ####
29
2
 
30
- base:
31
- baleen_server: 127.0.0.1
32
- port: 5533
3
+ ## Use this file as your template to construct your project and save as ~/baleen.yml
4
+ ## The file is loaed by baleen-server at boot time (use --project_file option to specify file location)
5
+ ## See also https://github.com/kimh/baleen/blob/master/README.md
33
6
 
34
- runner:
35
- image: kimh/baleen-poc
36
- work_dir: /git/baleen/poc
37
- concurrency: 3
38
- before_command: bundle install
39
- # If you want to specify multiple commands, you can use block style syntax of YAML
40
- # before_command: |
41
- # source /etc/profile.d/rvm.sh
42
- # bundle install
7
+ # Project name section
8
+ baleen-poc:
9
+ # Runner section
10
+ runner:
11
+ image: "kimh/baleen-poc"
12
+ work_dir: /baleen-poc
13
+ concurrency: 3
14
+ before_command: |
15
+ source /etc/profile
16
+ export RAILS_ENV=test
17
+ bundle exec rake db:migrate
43
18
 
44
- framework:
45
- type: cucumber
46
- features: ./
19
+ # Framework section
20
+ framework:
21
+ type: cucumber
22
+ features: ./features/t1.feature
23
+
24
+ # CI section
25
+ ci:
26
+ build: true
27
+ url: https://github.com/kimh/baleen-poc
28
+ repo: baleen-poc
29
+ branch: master
data/bin/baleen CHANGED
@@ -53,7 +53,7 @@ module BaleenCLI
53
53
  include Baleen::Default
54
54
  include BaleenCliHelper
55
55
 
56
- option :baleen_server, :required => true
56
+ option :baleen_server
57
57
  option :port
58
58
  option :before_command
59
59
  option :concurrency
@@ -66,8 +66,8 @@ module BaleenCLI
66
66
  def start
67
67
  project = {
68
68
  base: {
69
- baleen_server: options[:baleen_server],
70
- port: options[:port] || default_port
69
+ baleen_server: options[:baleen_server] || default_baleen_server,
70
+ port: options[:port] || default_port
71
71
  },
72
72
  runner: {
73
73
  before_command: options[:before_command] || default_before_command,
@@ -1,3 +1,3 @@
1
1
  module Baleen
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baleen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kim, Hirokuni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-02 00:00:00.000000000 Z
11
+ date: 2013-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -28,154 +28,154 @@ dependencies:
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ! '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: pry
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ! '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ! '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: awesome_print
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ! '>='
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ! '>='
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: interactive_editor
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - '>='
73
+ - - ! '>='
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - '>='
80
+ - - ! '>='
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rspec
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - '>='
87
+ - - ! '>='
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - '>='
94
+ - - ! '>='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: celluloid
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - '>='
101
+ - - ! '>='
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - '>='
108
+ - - ! '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: celluloid-io
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - '>='
115
+ - - ! '>='
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - '>='
122
+ - - ! '>='
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: docker-api
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - '>='
129
+ - - ! '>='
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - '>='
136
+ - - ! '>='
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: colorize
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - '>='
143
+ - - ! '>='
144
144
  - !ruby/object:Gem::Version
145
145
  version: '0'
146
146
  type: :runtime
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - '>='
150
+ - - ! '>='
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0'
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: thor
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - '>='
157
+ - - ! '>='
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0'
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
- - - '>='
164
+ - - ! '>='
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0'
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: sinatra
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - '>='
171
+ - - ! '>='
172
172
  - !ruby/object:Gem::Version
173
173
  version: '0'
174
174
  type: :runtime
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
- - - '>='
178
+ - - ! '>='
179
179
  - !ruby/object:Gem::Version
180
180
  version: '0'
181
181
  description: Ballen allows you to run standard ruby tests in parallel and isolated
@@ -243,12 +243,12 @@ require_paths:
243
243
  - lib
244
244
  required_ruby_version: !ruby/object:Gem::Requirement
245
245
  requirements:
246
- - - '>='
246
+ - - ! '>='
247
247
  - !ruby/object:Gem::Version
248
248
  version: 2.0.0
249
249
  required_rubygems_version: !ruby/object:Gem::Requirement
250
250
  requirements:
251
- - - '>='
251
+ - - ! '>='
252
252
  - !ruby/object:Gem::Version
253
253
  version: '0'
254
254
  requirements: []
@@ -263,3 +263,4 @@ test_files:
263
263
  - spec/lib/baleen/spec_task.rb
264
264
  - spec/lib/baleen/spec_validator.rb
265
265
  - spec/spec_helper.rb
266
+ has_rdoc: