Skip to content

Commit

Permalink
Merge pull request #11 from highb/release_0.1.0
Browse files Browse the repository at this point in the history
Release 0.1.0
  • Loading branch information
highb authored Jun 4, 2017
2 parents c8e75ec + a0d2732 commit 949fed7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# pathspec-ruby CHANGELOG

## 0.1.0
- Port new edgecase handling from [python-path-specification](https://github.com/cpburnz/python-path-specification/pull/8). Many thanks to @jdpace! :)
- Removed EOL Ruby support
- Added current Ruby stable to Travis testing

Expand Down
2 changes: 1 addition & 1 deletion install_from_source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ bundle exec rspec spec
bundle exec gem uninstall pathspec

# Build and install!
bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.0.1.gem
bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.1.0.gem
6 changes: 3 additions & 3 deletions pathspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |s|
s.name = 'pathspec'
s.version = '0.0.2'
s.date = '2014-08-11'
s.version = '0.1.0'
s.date = '2017-06-04'
s.summary = "PathSpec: for matching path patterns"
s.description = "Use to match path patterns such as gitignore"
s.authors = ["Brandon High"]
s.email = '[email protected]'
s.files = Dir.glob("{lib,spec}/**/*") + %w(LICENSE README.md CHANGELOG.md)
s.test_files = s.files.grep(%r{^spec/})
s.require_paths = ["lib"]
s.homepage = 'https://rubygems.org/gems/pathspec'
s.homepage = 'https://github.com/highb/pathspec-ruby'
s.license = 'Apache'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rspec'
Expand Down

0 comments on commit 949fed7

Please sign in to comment.