-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
language: ruby | ||
rvm: | ||
- 2.2.3 | ||
- 2.6.4 | ||
before_install: | ||
- sudo apt-get -qq update | ||
- sudo apt-get install -y catdoc unrtf poppler-utils tesseract-ocr | ||
- gem install bundler -v 1.10.6 | ||
- gem install bundler -v 2.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require 'plaintext/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "plaintext" | ||
spec.name = 'plaintext' | ||
spec.version = Plaintext::VERSION | ||
spec.authors = ['Jens Krämer', 'Planio GmbH', 'OpenProject GmbH'] | ||
spec.email = ['[email protected]'] | ||
|
@@ -15,15 +15,15 @@ Gem::Specification.new do |spec| | |
spec.license = 'GPL-2.0' | ||
|
||
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | ||
spec.bindir = "exe" | ||
spec.bindir = 'exe' | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.add_dependency 'rubyzip', '~> 1.2.1' | ||
spec.add_dependency 'nokogiri', '>= 1.10.4' | ||
spec.add_dependency 'activesupport', '>2.2.1 ' | ||
spec.add_dependency 'nokogiri', '~> 1.10', '>= 1.10.4' | ||
spec.add_dependency 'rubyzip', '~> 1.2.1' | ||
|
||
spec.add_development_dependency "bundler" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "rspec" | ||
spec.add_development_dependency 'bundler', '~> 2.0' | ||
spec.add_development_dependency 'rake', '~> 12.0' | ||
spec.add_development_dependency 'rspec' | ||
end |