File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11# pathspec-ruby CHANGELOG
22
33## 0.1.0
4+ - Port new edgecase handling from [ python-path-specification] ( https://github.com/cpburnz/python-path-specification/pull/8 ) . Many thanks to @jdpace ! :)
45- Removed EOL Ruby support
56- Added current Ruby stable to Travis testing
67
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ bundle exec rspec spec
99bundle exec gem uninstall pathspec
1010
1111# Build and install!
12- bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.0.1 .gem
12+ bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.1.0 .gem
Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
33
44Gem ::Specification . new do |s |
55 s . name = 'pathspec'
6- s . version = '0.0.2 '
7- s . date = '2014-08-11 '
6+ s . version = '0.1.0 '
7+ s . date = '2017-06-04 '
88 s . summary = "PathSpec: for matching path patterns"
99 s . description = "Use to match path patterns such as gitignore"
1010 s . authors = [ "Brandon High" ]
1111 s . email = 'bh@brandon-high.com'
1212 s . files = Dir . glob ( "{lib,spec}/**/*" ) + %w( LICENSE README.md CHANGELOG.md )
1313 s . test_files = s . files . grep ( %r{^spec/} )
1414 s . require_paths = [ "lib" ]
15- s . homepage = 'https://rubygems.org/gems /pathspec'
15+ s . homepage = 'https://github.com/highb /pathspec-ruby '
1616 s . license = 'Apache'
1717 s . add_development_dependency 'bundler'
1818 s . add_development_dependency 'rspec'
You can’t perform that action at this time.
0 commit comments