This repository was archived by the owner on Feb 4, 2025. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathruby-bbcode.gemspec
More file actions
Latest commit
39 lines (32 loc) · 1.45 KB
/
Copy pathruby-bbcode.gemspec
File metadata and controls
39 lines (32 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true
$LOAD_PATH.pushFile.expand_path('lib',__dir__)
# Maintain your gem's version:
require'ruby-bbcode/version'
# Describe your gem and declare its dependencies:
Gem::Specification.newdo |s|
s.name='ruby-bbcode'
s.version=RubyBBCode::VERSION
s.platform=Gem::Platform::RUBY
s.required_ruby_version='>= 2.5.0'
s.author='Maarten Bezemer'
s.email='maarten.bezemer@gmail.com'
s.homepage='http://github.com/veger/ruby-bbcode'
s.summary="ruby-bbcode-#{s.version}"
s.description='Convert BBCode to HTML and check whether the BBCode is valid.'
s.license='MIT'
s.files=Dir['lib/**/*'] + ['MIT-LICENSE','Rakefile','README.md','CHANGELOG.md']
s.test_files=Dir['test/**/*']
s.rdoc_options << '--title' << 'Ruby BBCode' << '--main' << 'README.md'
s.extra_rdoc_files=['README.md','CHANGELOG.md','MIT-LICENSE']
s.add_dependency'activesupport','>= 4.2.2'
s.add_development_dependency'base64'# ruby 3.4 requires explicit dependencies
s.add_development_dependency'bigdecimal'# ruby 3.4 requires explicit dependencies
s.add_development_dependency'simplecov'
s.add_development_dependency'simplecov-lcov'
s.add_development_dependency'irb'
s.add_development_dependency'minitest'
s.add_development_dependency'rake'
s.add_development_dependency'rdoc'
s.add_development_dependency'solargraph'
s.add_development_dependency'term-ansicolor'
end