File tree Expand file tree Collapse file tree 6 files changed +12
-10
lines changed
Expand file tree Collapse file tree 6 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
15- ruby-version : ['2.6', '2.7', ' 3.1']
15+ ruby-version : ['3.1']
1616
1717 steps :
18- - uses : actions/checkout@v2
18+ - uses : actions/checkout@v4
1919 - name : Set up Ruby
2020 uses : ruby/setup-ruby@v1
2121 with :
Original file line number Diff line number Diff line change 99
1010# rspec failure tracking
1111.rspec_status
12- niftany-0.0.1 .gem
12+ niftany- * .gem
1313Gemfile.lock
Original file line number Diff line number Diff line change 1- 2.7.1
1+ 3.1.6
Original file line number Diff line number Diff line change @@ -6,3 +6,8 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
66
77# Specify your gem's dependencies in niftany.gemspec
88gemspec
9+
10+ group :development do
11+ gem 'bundler' , '~> 2.0'
12+ gem 'rake' , '~> 12.0'
13+ end
Original file line number Diff line number Diff line change 22
33Gem ::Specification . new do |spec |
44 spec . name = 'niftany'
5- spec . version = '0.10.1 '
5+ spec . version = '0.11.0 '
66 spec . metadata = { 'rubygems_mfa_required' => 'true' }
77 spec . authors = [ 'Adam Wead' ]
88 spec . email = [ 'amsterdamos@gmail.com' ]
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
1414 spec . bindir = 'exe'
1515 spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
1616
17- spec . required_ruby_version = '>= 2.6.0 '
17+ spec . required_ruby_version = '>= 3.1 '
1818
1919 spec . add_dependency 'colorize' , '~> 0.8.1'
2020 spec . add_dependency 'erb_lint' , '~> 0.0.22'
@@ -23,7 +23,4 @@ Gem::Specification.new do |spec|
2323 spec . add_dependency 'rubocop-rails' , '~> 2.3'
2424 spec . add_dependency 'rubocop-rspec' , '~> 2'
2525 spec . add_dependency 'scss_lint' , '~> 0.55'
26-
27- spec . add_development_dependency 'bundler' , '~> 2.0'
28- spec . add_development_dependency 'rake' , '~> 12.0'
2926end
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ inherit_from:
88 - rubocop/style.yml
99
1010AllCops :
11- TargetRubyVersion : 2.6
11+ TargetRubyVersion : 3.1
1212 DisplayCopNames : true
1313 NewCops : enable
You can’t perform that action at this time.
0 commit comments