continuous_integration 0.0.1 → 0.0.2
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 +27 -1
- data/continuous_integration.gemspec +3 -2
- data/lib/continuous_integration/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38c66cc12cbcc3a61aaf5c5c1695f6adea11de95
|
4
|
+
data.tar.gz: 58adaab729fe1503d451cdd718c0394020812a93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11fd83376f67fe5d81aad60ef2b5f54c4f282058b8a69218a9ad953350fe6e8e127d1544b6abce0c9ade3683b01e051c139078093aecf49bada765a00c500dba
|
7
|
+
data.tar.gz: 9c6856f9b15016b79dfbb1a3b85fa6a0d16728e47fdb251d158ade7121b87094daef09ed5a0644aeb8fcdb7e4aaba68cd63ac3b4918fba10e98efc2cc4dbbaef
|
data/README.md
CHANGED
@@ -1 +1,27 @@
|
|
1
|
-
#
|
1
|
+
# continuous_integration
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
Add this line to your application's Gemfile:
|
6
|
+
|
7
|
+
gem 'continuous_integration'
|
8
|
+
|
9
|
+
And then execute:
|
10
|
+
|
11
|
+
$ bundle
|
12
|
+
|
13
|
+
Or install it yourself as:
|
14
|
+
|
15
|
+
$ gem install continuous_integration
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
Starting the server
|
20
|
+
```ruby
|
21
|
+
server = ContinuousIntegration.run_ci
|
22
|
+
```
|
23
|
+
|
24
|
+
Shutting it down
|
25
|
+
```ruby
|
26
|
+
ContinuousIntegration.shutdown_server server
|
27
|
+
```
|
@@ -10,7 +10,8 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.email = ["ragavendra.bn@gmail.com"]
|
11
11
|
gem.description = %q{CI server for running integration tests using webrick}
|
12
12
|
gem.summary = %q{One can run their UI and API tests using this gem}
|
13
|
-
gem.homepage = ""
|
13
|
+
gem.homepage = "https://rubygems.org/gems/continuous_integration"
|
14
|
+
gem.license = 'MIT'
|
14
15
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
@@ -18,5 +19,5 @@ Gem::Specification.new do |gem|
|
|
18
19
|
gem.require_paths = ["lib"]
|
19
20
|
|
20
21
|
gem.add_development_dependency 'rspec', '~> 2.7'
|
21
|
-
gem.add_development_dependency 'rake'
|
22
|
+
gem.add_development_dependency 'rake', '~> 0'
|
22
23
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: continuous_integration
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ragavendra Nagraj
|
@@ -28,14 +28,14 @@ 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
|
description: CI server for running integration tests using webrick
|
@@ -55,8 +55,9 @@ files:
|
|
55
55
|
- lib/continuous_integration/constants.rb
|
56
56
|
- lib/continuous_integration/tasks.rb
|
57
57
|
- lib/continuous_integration/version.rb
|
58
|
-
homepage:
|
59
|
-
licenses:
|
58
|
+
homepage: https://rubygems.org/gems/continuous_integration
|
59
|
+
licenses:
|
60
|
+
- MIT
|
60
61
|
metadata: {}
|
61
62
|
post_install_message:
|
62
63
|
rdoc_options: []
|