From a8e82ba99adf1a2a34b136388b088dcfe60d9593 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Fri, 26 Jan 2018 00:53:22 +0100 Subject: Prepare project structure --- Gemfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Gemfile (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..80fe15a --- /dev/null +++ b/Gemfile @@ -0,0 +1,14 @@ +source 'https://rubygems.org' +gemspec + +unless ENV.fetch('ASCIIDOCTOR_VERSION', '').empty? + if (match = ENV['ASCIIDOCTOR_VERSION'].match(/^git:(\w+)/)) + gem 'asciidoctor', github: 'asciidoctor/asciidoctor', ref: match[1] + else + gem 'asciidoctor', ENV['ASCIIDOCTOR_VERSION'] + end +end + +group :ci do + gem 'codacy-coverage', '~> 1.1', require: false +end -- cgit v1.2.3