File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# pathspec-ruby CHANGELOG
22
3+ ## 0.1.2
4+ - Fix for regexp matching Thanks @incase ! #16
5+ - File handling cleanup Thanks @martinandert ! #13
6+ - ` from_filename ` actually works now! Thanks @martinandert ! #12
7+
38## 0.1.0
49- Port new edgecase handling from [ python-path-specification] ( https://github.com/cpburnz/python-path-specification/pull/8 ) . Many thanks to @jdpace ! :)
510- Removed EOL Ruby support
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.1.0 .gem
12+ bundle exec gem build pathspec.gemspec && bundle exec gem install pathspec-0.1.2 .gem
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
33
44Gem ::Specification . new do |s |
55 s . name = 'pathspec'
6- s . version = '0.1.0 '
7- s . date = '2017-06-04 '
6+ s . version = '0.1.2 '
7+ s . date = '2018-01-11 '
88 s . summary = "PathSpec: for matching path patterns"
99 s . description = "Use to match path patterns such as gitignore"
1010 s . authors = [ "Brandon High" ]
@@ -14,6 +14,6 @@ Gem::Specification.new do |s|
1414 s . require_paths = [ "lib" ]
1515 s . homepage = 'https://github.com/highb/pathspec-ruby'
1616 s . license = 'Apache'
17- s . add_development_dependency 'bundler'
18- s . add_development_dependency 'rspec'
17+ s . add_development_dependency 'bundler' , '~> 1.0'
18+ s . add_development_dependency 'rspec' , '~> 3.0'
1919end
You can’t perform that action at this time.
0 commit comments