Skip to content

Commit cbbe8ca

Browse files
committed
Remove aruba/cucumber and generally modernize
1 parent d97626d commit cbbe8ca

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1207
-3615
lines changed

.circleci/config.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
version: 2.1
2+
orbs:
3+
# See https://circleci.com/developer/orbs/orb/circleci/ruby
4+
ruby: circleci/[email protected]
5+
jobs: # keyword
6+
test: # my name for the job
7+
parameters: # keyword
8+
ruby-version: # my parameter name
9+
type: string # type is a keyword
10+
docker: # keyword
11+
- image: cimg/base:stable
12+
steps: # keyword
13+
- checkout # magic name
14+
- ruby/install: # ruby/ is from the orb name, install is a command in that orb
15+
version: << parameters.ruby-version >> # magic nonsense for param subst (version param to the command)
16+
- run:
17+
command: "bin/setup"
18+
- run:
19+
command: "bin/ci"
20+
workflows: # keyword
21+
all-rubies: # my name for the workflow
22+
jobs: # keyword
23+
- test: # my name for the job
24+
matrix: # keyword
25+
parameters: # keyword
26+
# All rubies being maintained per this page:
27+
# https://www.ruby-lang.org/en/downloads/branches/
28+
ruby-version: [ "2.5", "2.6", "2.7", "3.0" ]

.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ pkg
55
coverage
66
.bundle
77
tmp
8-
cruddo.rdoc
9-
gli.wiki
108
Gemfile.lock
119
*.gem
1210
results.html
13-
.rbx
1411
.DS_Store
1512
Session.vim
13+
scaffold_test

.ruby-gemset

-1
This file was deleted.

.ruby-version

-1
This file was deleted.

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby 3.0.0
1+
ruby 2.7.1

.travis.yml

-11
This file was deleted.

Gemfile

-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,5 @@ source 'https://rubygems.org'
22

33
gemspec
44

5-
gem "rcov", ">= 0.9.8", :platforms => :mri_18
65
gem "simplecov", "~> 0.6.4", :platforms => :mri_19
76
gem "psych", :platforms => :mri_19
8-
9-
major,minor = RUBY_VERSION.split(/\./)
10-
if (major.to_i ==2 && minor.to_i >= 2) || (major.to_i > 2)
11-
gem "test-unit"
12-
end

0 commit comments

Comments
 (0)