This repository was archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflo.gemspec
More file actions
37 lines (32 loc) · 1.5 KB
/
flo.gemspec
File metadata and controls
37 lines (32 loc) · 1.5 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
# coding: utf-8
# Copyright © 2017, Salesforce.com, Inc.
# All Rights Reserved.
# Licensed under the BSD 3-Clause license.
# For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'flo/version'
Gem::Specification.new do |spec|
spec.name = 'flo'
spec.version = Flo::VERSION
spec.authors = ['Justin Powers']
spec.summary = %q{Simple developer workflow automation}
spec.description = %q{Flo is a local workflow automation tool that helps you get things done. This gem contains the core functionality for Flo, plugins for interacting with various systems can be found in separate provider gems.}
spec.homepage = 'https://github.com/salesforce/flo'
spec.license = 'BSD-3-Clause'
spec.executables << 'flo'
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^test/})
spec.require_paths = ['lib']
spec.add_dependency 'cleanroom'
spec.add_dependency 'gpgme'
spec.add_dependency 'cri'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'minitest'
spec.add_development_dependency 'minitest-proveit'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'codeclimate-test-reporter'
end