Skip to content

Commit

Permalink
Merge pull request #23 from nulogy/fix-gemspec-bins
Browse files Browse the repository at this point in the history
Fix gemspec bins
  • Loading branch information
sskirby authored Mar 2, 2020
2 parents e73e69a + a8e18e0 commit a3ef7bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Vorpal [![Build Status](https://travis-ci.org/nulogy/vorpal.svg?branch=master)](https://travis-ci.org/nulogy/vorpal) [![Code Climate](https://codeclimate.com/github/nulogy/vorpal/badges/gpa.svg)](https://codeclimate.com/github/nulogy/vorpal) [![Code Coverage](https://codecov.io/gh/nulogy/vorpal/branch/master/graph/badge.svg)](https://codecov.io/gh/nulogy/vorpal/branch/master)
# Vorpal [![Build Status](https://travis-ci.com/nulogy/vorpal.svg?branch=master)](https://travis-ci.com/nulogy/vorpal) [![Code Climate](https://codeclimate.com/github/nulogy/vorpal/badges/gpa.svg)](https://codeclimate.com/github/nulogy/vorpal) [![Code Coverage](https://codecov.io/gh/nulogy/vorpal/branch/master/graph/badge.svg)](https://codecov.io/gh/nulogy/vorpal/branch/master)

Separate your domain model from your persistence mechanism. Some problems call for a really sharp tool.

Expand Down
5 changes: 3 additions & 2 deletions vorpal.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/nulogy/vorpal"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.files = Dir["CHANGELOG.md", "LICENSE.txt", "README.md", "vorpal.gemspec", "lib/**/*"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_runtime_dependency "simple_serializer", "~> 1.0"
Expand Down

0 comments on commit a3ef7bc

Please sign in to comment.