Skip to content

Commit

Permalink
Merge 2a87419 into 4e8685d
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspg committed Apr 3, 2021
2 parents 4e8685d + 2a87419 commit 995dfb9
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 37 deletions.
11 changes: 11 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,11 @@
version: 2.1
orbs:
ruby: circleci/ruby@0.1.2

jobs:
build:
docker:
- image: circleci/ruby:2.6.3-stretch-node
executor: ruby/default
steps:
- checkout
8 changes: 3 additions & 5 deletions .travis.yml
@@ -1,8 +1,6 @@
language: ruby
sudo: false
rvm:
- 2.3.1
- 2.2.3
- 2.1.5
- 2.0.0

- 2.7.2
- 2.6.6
- 2.5.8
16 changes: 8 additions & 8 deletions Gemfile
@@ -1,13 +1,13 @@
source "https://rubygems.org"

gem "patir", "~>0.8", :require => false
gem "highline","~>1.7", :require => false
gem "highline", "~>2.0.3", :require => false

group :development do
gem 'coveralls', '>= 0.8.21', :require => false
gem "hoe", "~> 3.16.1", :require => false
gem 'rdoc','~>5.0.0', :require => false
gem "mocha","~>1.2.1", :require => false
gem "pry", :require => false
gem 'test-unit','~>3.2.3',:require => false
end
gem "coveralls", "~>0.8.23", :require => false
gem "hoe", "~>3.22.3", :require => false
gem "mocha", "~>1.12.0", :require => false
gem "pry", "~>0.14.0", :require => false
gem "rdoc", "~>6.3.0", :require => false
gem "test-unit", "~>3.4.0", :require => false
end
44 changes: 21 additions & 23 deletions Gemfile.lock
@@ -1,30 +1,28 @@
GEM
remote: https://rubygems.org/
specs:
coderay (1.1.2)
coderay (1.1.3)
coveralls (0.8.23)
json (>= 1.8, < 3)
simplecov (~> 0.16.1)
term-ansicolor (~> 1.3)
thor (>= 0.19.4, < 2.0)
tins (~> 1.6)
docile (1.3.2)
highline (1.7.8)
hoe (3.16.2)
rake (>= 0.8, < 13.0)
highline (2.0.3)
hoe (3.22.3)
rake (>= 0.8, < 15.0)
json (2.3.0)
metaclass (0.0.4)
method_source (0.8.2)
mocha (1.2.1)
metaclass (~> 0.0.1)
method_source (1.0.0)
mocha (1.12.0)
patir (0.9.0)
systemu (~> 2.6)
power_assert (1.1.0)
pry (0.11.0)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
rake (12.3.3)
rdoc (5.0.0)
power_assert (2.0.0)
pry (0.14.0)
coderay (~> 1.1)
method_source (~> 1.0)
rake (13.0.3)
rdoc (6.3.0)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
Expand All @@ -34,7 +32,7 @@ GEM
systemu (2.6.5)
term-ansicolor (1.7.1)
tins (~> 1.0)
test-unit (3.2.6)
test-unit (3.4.0)
power_assert
thor (1.0.1)
tins (1.24.1)
Expand All @@ -44,14 +42,14 @@ PLATFORMS
ruby

DEPENDENCIES
coveralls (>= 0.8.21)
highline (~> 1.7)
hoe (~> 3.16.1)
mocha (~> 1.2.1)
coveralls (~> 0.8.23)
highline (~> 2.0.3)
hoe (~> 3.22.3)
mocha (~> 1.12.0)
patir (~> 0.8)
pry
rdoc (~> 5.0.0)
test-unit (~> 3.2.3)
pry (~> 0.14.0)
rdoc (~> 6.3.0)
test-unit (~> 3.4.0)

BUNDLED WITH
1.17.3
2.2.15
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -9,7 +9,7 @@ Hoe.spec "rutema" do |prj|
license "MIT"
prj.version = Rutema::Version::STRING
prj.summary='rutema is a test execution and management framework for heterogeneous testing environments'
prj.urls=["http://github.com/damphyr/rutema"]
prj.urls = { "home" => "http://github.com/damphyr/rutema" }
prj.description= "rutema is a test execution tool and a framework for organizing and managing test execution across different tools.\nIt enables the combination of different test tools while it takes care of logging, reporting, archiving of results and formalizes execution of automated and manual tests.\nIt's purpose is to make testing in heterogeneous environments easier."
prj.local_rdoc_dir='doc/rdoc'
prj.readme_file="README.md"
Expand Down

0 comments on commit 995dfb9

Please sign in to comment.