srl_ruby 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a80b384a696db072da2e0b05df48bbb318ca817d
4
- data.tar.gz: 85269501fe730ed717ed673dbb949f47025462a0
3
+ metadata.gz: 1ac4b0f8fd97b06c70f416ef86a1be451e66c120
4
+ data.tar.gz: 57c2baed9fc6659842ca4b0df87686a5ce1fdb38
5
5
  SHA512:
6
- metadata.gz: 8041e060c085687c4ca8a11bfc6d893be0495c8620aeba085a83e1d2b294ddecf0844c2c98399b08b9f861b038ed4eea28018f4936b87f2384330ee9dbaaf169
7
- data.tar.gz: a378f1a8bf10787555ff7ccb3906968b441821356cebccb0b32db0661ff23ca078b267e252b939110fe9125a618f16ed52eb7b98f3aebb5668e4a25587e11cf7
6
+ metadata.gz: 73b82f0ab75ed3a0426809ec69c00448f1212efbc4d4216a9293094080d9ec734421ebb62868c4b84858aef7408d75ab69fd61567d10f004f64b981383b4eddc
7
+ data.tar.gz: de79ea767f4a30d454f1b266c5581796a9881e83e6452fbf7398d3f99cb938b5b1a3fd17b6804ef89af6c8f6e116df4a41a990cc9ab7606780489198bb645ab5
data/CHANGELOG.md ADDED
@@ -0,0 +1,20 @@
1
+ ## Unreleased
2
+ ### Added
3
+ ### Changed
4
+ ### Deprecated
5
+ ### Removed
6
+ ### Fixed
7
+ ### Security
8
+
9
+ ## [0.0.2] - 2018-03-07
10
+ ### Added
11
+ - File `CHANGELOG.md`. This file. Adopting `keepachangelog.com` recommended format.
12
+ - File `appveyor.yml`. Configuration file for the AppVeyor CI (automated builds on Windows)
13
+
14
+ ### Changed
15
+ - File `README.md` added badges (Appveyor build status, Gem version, license)
16
+
17
+ ## [0.0.1] - 2018-03-06
18
+ ### Added
19
+ - Initial working Github commit
20
+
data/README.md CHANGED
@@ -1,7 +1,11 @@
1
- # SrlRuby
2
- [![Build Status](https://travis-ci.org/famished-tiger/SRL-Ruby.svg?branch=master)](https://travis-ci.org/famished-tiger/SRL-Ruby)
1
+ # srl_ruby
2
+ [![Linux Build Status](https://travis-ci.org/famished-tiger/SRL-Ruby.svg?branch=master)](https://travis-ci.org/famished-tiger/SRL-Ruby)
3
+ [![Build status](https://ci.appveyor.com/api/projects/status/l5adgcbfo128rvo9?svg=true)](https://ci.appveyor.com/project/famished-tiger/srl-ruby)
4
+ [![Gem Version](https://badge.fury.io/rb/srl_ruby.svg)](https://badge.fury.io/rb/srl_ruby)
5
+ [![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](https://github.com/famished-tiger/SRL-Ruby/blob/master/LICENSE.txt)
3
6
 
4
- This project implements a [Simple Regex Language](https://simple-regex.com) interpreter in Ruby.
7
+
8
+ This project implements a [Simple Regex Language](https://simple-regex.com) parser and interpreter in Ruby.
5
9
 
6
10
  ## What is SRL?
7
11
  SRL is a small language lets you write regular expressions
@@ -48,10 +52,6 @@ Or install it yourself as:
48
52
 
49
53
  $ gem install srl_ruby
50
54
 
51
- ## Usage
52
-
53
- TODO: Write usage instructions here
54
-
55
55
 
56
56
  ## Contributing
57
57
 
data/appveyor.yml ADDED
@@ -0,0 +1,27 @@
1
+ version: '{build}'
2
+ max_jobs: 3
3
+ environment:
4
+ matrix:
5
+ - Ruby_version: 21
6
+ - Ruby_version: 21-x64
7
+ - Ruby_version: 22
8
+ - Ruby_version: 22-x64
9
+ - Ruby_version: 23
10
+ - Ruby_version: 23-x64
11
+ - Ruby_version: 24
12
+ - Ruby_version: 24-x64
13
+ - Ruby_version: 25
14
+ - Ruby_version: 25-x64
15
+
16
+ # These are failing
17
+ # - Ruby_version: 26
18
+ # - Ruby_version: 26-x64
19
+
20
+ install:
21
+ - set PATH=C:\Ruby%Ruby_version%\bin;%PATH%
22
+ - bundle install --retry=3 --clean --force
23
+
24
+ build: off
25
+
26
+ test_script:
27
+ - bundle exec rake
@@ -1,3 +1,3 @@
1
1
  module SrlRuby
2
- VERSION = '0.0.1'.freeze
2
+ VERSION = '0.0.2'.freeze
3
3
  end
data/srl_ruby.gemspec CHANGED
@@ -9,6 +9,7 @@ module PkgExtending
9
9
  '.rubocop.yml',
10
10
  '.rspec',
11
11
  '.yardopts',
12
+ 'appveyor.yml',
12
13
  'Gemfile',
13
14
  'Rakefile',
14
15
  'CHANGELOG.md',
@@ -36,8 +37,11 @@ Gem::Specification.new do |spec|
36
37
  spec.authors = ['Dimitri Geshef']
37
38
  spec.email = ['famished.tiger@yahoo.com']
38
39
 
39
- spec.summary = %q(Ruby implementation of the Simple Regex Language)
40
- spec.description = %q(Ruby implementation of the Simple Regex Language)
40
+ spec.summary = %q(A parser for the Simple Regex Language, written in Ruby.)
41
+ spec.description = <<-END_DESCR
42
+ srl_ruby is a Ruby gem implementing a parser for Simple Regex Language (SRL).
43
+ It reads then converts SRL input into Ruby Strings or Regexp.
44
+ END_DESCR
41
45
  spec.homepage = 'https://github.com/famished-tiger/SRL-Ruby'
42
46
  spec.license = 'MIT'
43
47
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: srl_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dimitri Geshef
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-06 00:00:00.000000000 Z
11
+ date: 2018-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rley
@@ -66,7 +66,8 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '3.0'
69
- description: Ruby implementation of the Simple Regex Language
69
+ description: "srl_ruby is a Ruby gem implementing a parser for Simple Regex Language
70
+ (SRL).\nIt reads then converts SRL input into Ruby Strings or Regexp. \n"
70
71
  email:
71
72
  - famished.tiger@yahoo.com
72
73
  executables:
@@ -78,10 +79,12 @@ files:
78
79
  - ".rspec"
79
80
  - ".rubocop.yml"
80
81
  - ".yardopts"
82
+ - CHANGELOG.md
81
83
  - Gemfile
82
84
  - LICENSE.txt
83
85
  - README.md
84
86
  - Rakefile
87
+ - appveyor.yml
85
88
  - bin/srl_ruby
86
89
  - lib/regex/abstract_method.rb
87
90
  - lib/regex/alternation.rb
@@ -141,7 +144,7 @@ rubyforge_project:
141
144
  rubygems_version: 2.6.13
142
145
  signing_key:
143
146
  specification_version: 4
144
- summary: Ruby implementation of the Simple Regex Language
147
+ summary: A parser for the Simple Regex Language, written in Ruby.
145
148
  test_files:
146
149
  - spec/integration_spec.rb
147
150
  - spec/regex/character_spec.rb