summaryrefslogtreecommitdiffstats
path: root/debian/vendor-h2o/deps/mruby-onig-regexp/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'debian/vendor-h2o/deps/mruby-onig-regexp/README.md')
-rw-r--r--debian/vendor-h2o/deps/mruby-onig-regexp/README.md45
1 files changed, 0 insertions, 45 deletions
diff --git a/debian/vendor-h2o/deps/mruby-onig-regexp/README.md b/debian/vendor-h2o/deps/mruby-onig-regexp/README.md
deleted file mode 100644
index 41eada4..0000000
--- a/debian/vendor-h2o/deps/mruby-onig-regexp/README.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# mruby-onig-regexp
-
-[![Build Status](https://travis-ci.org/mattn/mruby-onig-regexp.svg)](https://travis-ci.org/mattn/mruby-onig-regexp)
-
-## install by mrbgems
-```ruby
-MRuby::Build.new do |conf|
-
- # ... (snip) ...
-
- conf.gem :github => 'mattn/mruby-onig-regexp'
-end
-```
-
-## Example
-```ruby
-
-def matchstr(str)
- reg = Regexp.compile("abc")
-
- if reg =~ str then
- p "match"
- else
- p "not match"
- end
-end
-
-matchstr("abcdef") # => match
-matchstr("ghijkl") # => not match
-matchstr("xyzabc") # => match
-```
-
-## License
-
-MIT
-
-### License of Onigmo
-BSD licensed.
-
- Onigmo (Oniguruma-mod) -- (C) K.Takata <kentkt AT csc DOT jp>
- Oniguruma ---- (C) K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
-
-## Author
-
-Yasuhiro Matsumoto (a.k.a mattn)