Sha256: 6cc510eec55dc33e49c414ca29f74ef93070eed3097bb5058b9c83f596725977
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "trix_scientific/version" Gem::Specification.new do |spec| spec.name = "trix_scientific" spec.version = TrixScientific::VERSION spec.authors = ["DRBragg"] spec.email = ["DRBragg@gmail.com"] spec.summary = 'A modified version of Basecamp\'s Trix Editor' spec.description = 'A modified version of Basecamp\'s Trix Editor for use in scientific applications. Modifications include: Superscript tags, Subscript tags, text underlining, notation sympols, registration symbols, and removal of quote and code blocks' spec.homepage = "https://github.com/DRBragg/trix_scientific" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency 'rails', ['> 4.1', '<= 6.0'] spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec-rails", "~> 3.0" spec.add_development_dependency 'rspec-activemodel-mocks' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trix_scientific-0.1.0 | trix_scientific.gemspec |