Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit f6cf796

Browse files
author
Justin Powers
committed
Update readme and gemspec
1 parent db7703d commit f6cf796

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Flo
2+
[![Code Climate](https://codeclimate.com/github/codeclimate/codeclimate/badges/gpa.svg)](https://codeclimate.com/github/codeclimate/codeclimate) [![Build Status](https://semaphoreci.com/api/v1/justinpowers/flo/branches/master/shields_badge.svg)](https://semaphoreci.com/justinpowers/flo)
3+
24

35
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.
46

@@ -19,6 +21,10 @@ Or install it yourself as:
1921
```shell
2022
$ gem install flo
2123
```
24+
25+
## Documentation
26+
https://www.rubydoc.info/github/salesforce/flo/
27+
2228
## Usage
2329

2430
### Command line usage

flo.gemspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ Gem::Specification.new do |spec|
1414
spec.authors = ["Justin Powers"]
1515
spec.email = ["justinspowers@gmail.com"]
1616
spec.summary = %q{Simple developer workflow automation}
17-
spec.description = spec.summary
17+
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.}
1818
spec.homepage = "https://github.com/salesforce/flo"
1919
spec.license = "BSD-3-Clause"
2020

2121
spec.files = `git ls-files -z`.split("\x0")
22-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
23-
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
22+
spec.test_files = spec.files.grep(%r{^test/})
2423
spec.require_paths = ["lib"]
2524

2625
spec.add_dependency "cleanroom"

lib/flo/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
55

66
module Flo
7-
VERSION = "0.0.1"
7+
VERSION = "0.0.2"
88
end

0 commit comments

Comments
 (0)