https://github.com/Zjmainstay/RegexTesterForMac
A regular expression tester for Mac base on regex101.com
https://github.com/Zjmainstay/RegexTesterForMac
Last synced: about 1 month ago
JSON representation
A regular expression tester for Mac base on regex101.com
- Host: GitHub
- URL: https://github.com/Zjmainstay/RegexTesterForMac
- Owner: Zjmainstay
- Created: 2016-07-10T20:07:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-08T04:26:05.000Z (about 4 years ago)
- Last Synced: 2024-11-11T09:43:41.440Z (7 months ago)
- Language: JavaScript
- Size: 11.6 MB
- Stars: 175
- Watchers: 12
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-star - RegexTesterForMac
README
# RegexTesterForMac
A regular expression tester for Mac base on regex101.com## Notice!!!
Because my sever use for http://regex2.zjmainstay.cn is recycled, so this app is no longer run normally, thank you!
## 注意!!!
由于本人用于 http://regex2.zjmainstay.cn 的服务器已经被回收,因此本应用已不再正常服务,谢谢!## Download App directly
[Regex101.zip](https://raw.githubusercontent.com/Zjmainstay/RegexTesterForMac/master/dist/Regex101.zip)
## Online
[http://regex.zjmainstay.cn](http://regex.zjmainstay.cn)## Screenshot

----
## How to build a Mac App by yourself?
1. Install [MacGap](https://github.com/MacGapProject/MacGap1)
```$ sudo gem install macgap```
2. Clone Project```$ git clone https://github.com/Zjmainstay/RegexTesterForMac.git```
2. Build application:```
$ cd RegexTesterForMac
$ sh ./install.sh
```The build script generates an application, available inside the `build` folder.
## Base on
[https://www.regex101.com](https://www.regex101.com)## Idea from
This app came from the idea of [aurbano/regex101-osx](https://github.com/aurbano/regex101-osx). But it could not use when I download from aurbano/regex101-osx, so I create this repository for a new one.### Perhaps Error && Solution
```
#1
ERROR: Could not find a valid gem 'macgap' (>= 0), here is why:
Unable to download data from https://rubygems.org/ - Errno::EPIPE: Broken pipe -
SSL_connect (https://rubygems.org/latest_specs.4.8.gz)Solution:
gem source -r https://rubygems.org/
gem source -a http://rubygems.org/```