Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UW-2661: Add support for Ruby 3.x and Rails 7.x #16

Merged
merged 3 commits into from
Aug 30, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix rubocop offenses
  • Loading branch information
bfreese committed Aug 13, 2022
commit 89dd4554b0128fb8b7cbf895b2e8eb0e1bd4a336
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -14,4 +14,4 @@

# rspec failure tracking
.rspec_status
.tool-versions
.tool-versions
7 changes: 3 additions & 4 deletions actionable.gemspec
Original file line number Diff line number Diff line change
@@ -6,19 +6,18 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'actionable/version'

Gem::Specification.new do |spec|
spec.name = 'actionable'
spec.name = 'actionable'
current_branch = `git branch --remote --contains | sed "s|[[:space:]]*origin/||"`.strip
branch_commit = `git rev-parse HEAD`.strip[0..6]
current_branch == 'master' ? spec.version = Actionable::VERSION : spec.version = "#{Actionable::VERSION}-#{branch_commit}"

spec.version = current_branch == 'master' ? Actionable::VERSION : "#{Actionable::VERSION}-#{branch_commit}"
spec.authors = ['Adrian Esteban Madrid']
spec.email = ['aemadrid@gmail.com']

spec.summary = 'Simple and effective service objects.'
spec.description = 'Simple and effective Ruby service objects.'
spec.homepage = ''
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.5.0'
spec.required_ruby_version = '>= 2.7.0'

if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com/acima-credit'