2022-02-15 17:06:19 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = 'rpl'
|
2022-02-22 16:40:49 +01:00
|
|
|
s.version = '0.5.0'
|
2022-02-15 17:06:19 +01:00
|
|
|
s.summary = 'Functional Stack Language'
|
|
|
|
s.description = "A language inspired by HP's RPL and https://github.com/louisrubet/rpn/"
|
|
|
|
s.authors = ['Gwenhael Le Moine']
|
|
|
|
s.email = 'gwenhael@le-moine.org'
|
|
|
|
s.files = ['lib/rpl.rb',
|
|
|
|
'lib/rpl/dictionary.rb',
|
|
|
|
'lib/rpl/interpreter.rb',
|
|
|
|
'lib/rpl/core/branch.rb',
|
|
|
|
'lib/rpl/core/filesystem.rb',
|
|
|
|
'lib/rpl/core/general.rb',
|
|
|
|
'lib/rpl/core/logarithm.rb',
|
|
|
|
'lib/rpl/core/mode.rb',
|
|
|
|
'lib/rpl/core/operations.rb',
|
|
|
|
'lib/rpl/core/program.rb',
|
|
|
|
'lib/rpl/core/stack.rb',
|
|
|
|
'lib/rpl/core/store.rb',
|
2022-02-24 15:27:11 +01:00
|
|
|
'lib/rpl/core/string-list.rb',
|
2022-02-15 17:06:19 +01:00
|
|
|
'lib/rpl/core/test.rb',
|
|
|
|
'lib/rpl/core/time-date.rb',
|
|
|
|
'lib/rpl/core/trig.rb']
|
|
|
|
s.homepage = 'https://github.com/gwenhael-le-moine/rpl.rb'
|
|
|
|
s.license = 'GPL-3.0'
|
|
|
|
|
|
|
|
s.executables << 'rpl'
|
|
|
|
|
2022-02-15 18:54:54 +01:00
|
|
|
s.required_ruby_version = '> 2.7'
|
2022-02-15 17:06:19 +01:00
|
|
|
end
|