continuous_integration 0.0.5 → 0.0.6
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/Rakefile +8 -0
- data/lib/continuous_integration/version.rb +1 -1
- data/test/test_continuous_integration.rb +20 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2eade69aa72a31db48ddacd1845989d872e1c57
|
4
|
+
data.tar.gz: eab01e898b65aba5ae26749bc22d8de32808fe32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b5c3331973c9e7f71628b70bed353c83f83c1bbb927c2aab14e1cd8d6ff9ac9020990e954592297d3fa764ecef7b8890543b9d9c2ca28f8d85936949862862b
|
7
|
+
data.tar.gz: 925bdb6a7aa2c5edc1bde0ee7833229c05de92f0fd4a73092c5fba16578e846c09a440161cf0f8724c8eab9b0fc69ff34fa15617958bb8caa9c669721f425bca
|
data/Rakefile
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'minitest/autorun'
|
2
|
+
require 'continuous_integration'
|
3
|
+
|
4
|
+
class HolaTest < Minitest::Test
|
5
|
+
def test_run_ci
|
6
|
+
#assert_equal "hello world", Hola.hi("english")
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_shutdown_server
|
10
|
+
#assert_equal "hello world", Hola.hi("ruby")
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_run_server
|
14
|
+
#assert_equal "hola mundo", Hola.hi("spanish")
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_dir_mount
|
18
|
+
#assert_equal "hola mundo", Hola.hi("spanish")
|
19
|
+
end
|
20
|
+
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.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ragavendra Nagraj
|
@@ -52,12 +52,14 @@ files:
|
|
52
52
|
- Gemfile.lock
|
53
53
|
- LICENSE.txt
|
54
54
|
- README.md
|
55
|
+
- Rakefile
|
55
56
|
- bin/continuous_integration
|
56
57
|
- continuous_integration.gemspec
|
57
58
|
- lib/continuous_integration.rb
|
58
59
|
- lib/continuous_integration/constants.rb
|
59
60
|
- lib/continuous_integration/tasks.rb
|
60
61
|
- lib/continuous_integration/version.rb
|
62
|
+
- test/test_continuous_integration.rb
|
61
63
|
homepage: https://rubygems.org/gems/continuous_integration
|
62
64
|
licenses:
|
63
65
|
- MIT
|
@@ -82,4 +84,5 @@ rubygems_version: 2.5.2
|
|
82
84
|
signing_key:
|
83
85
|
specification_version: 4
|
84
86
|
summary: One can run their UI and API tests using this gem
|
85
|
-
test_files:
|
87
|
+
test_files:
|
88
|
+
- test/test_continuous_integration.rb
|