Skip to content

Commit

Permalink
Set ruby v2.3 as minimum ruby version
Browse files Browse the repository at this point in the history
  • Loading branch information
styd committed Oct 23, 2024
1 parent 85fcce8 commit 39c0290
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
17 changes: 9 additions & 8 deletions apexcharts.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@ $LOAD_PATH.push File.expand_path('lib', __dir__)
require_relative 'lib/apex_charts/version'

Gem::Specification.new do |spec|
spec.name = 'apexcharts'
spec.version = ApexCharts::VERSION
spec.authors = ['Adrian Setyadi']
spec.email = ['a.styd@yahoo.com']
spec.homepage = 'https://github.com/styd/apexcharts.rb'
spec.summary = 'Awesome charts for your ruby app'
spec.description =
spec.name = 'apexcharts'
spec.version = ApexCharts::VERSION
spec.required_ruby_version = ApexCharts::REQUIRED_RUBY_VERSION
spec.authors = ['Adrian Setyadi']
spec.email = ['a.styd@yahoo.com']
spec.homepage = 'https://github.com/styd/apexcharts.rb'
spec.summary = 'Awesome charts for your ruby app'
spec.description =
'Create beautiful, interactive, and responsive web charts in ' \
'ruby app powered by apexcharts.js.'
spec.license = 'MIT'
spec.license = 'MIT'

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(docs|images|spec|\.github)/})
Expand Down
1 change: 1 addition & 0 deletions lib/apex_charts/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
module ApexCharts
VERSION = '0.2.0'
RELEASE = '0.2.0'
REQUIRED_RUBY_VERSION = '>= 2.3.0'
end

0 comments on commit 39c0290

Please sign in to comment.