rstsyn 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2964e205c04edbb3a51a8ff3262adba0c3692fa2
4
+ data.tar.gz: 36405ce36754f87ea36e0665f9297ef1f7766a2f
5
+ SHA512:
6
+ metadata.gz: 370673b3695fac1fef96e2f029ab0f35ecc701d587e9713e2c8c912559883e29b4e1ee6de423f79e79ace8fa54aeb37fc5cc3d441836ed22f26c193c4dfadb34
7
+ data.tar.gz: 08fde15cff0919b2ad41fb2be5bd8d00579a5f123b01e08df805459494e676f3c8b5187a00af45f29dbfb407b6b7a8c0ba9e931fb1111fe1fc102dc0a3b9dfcd
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rstsyn.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Stephen Yu
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Rstsyn
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'rstsyn'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install rstsyn
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/rstsyn/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,9 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rspec/core/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new('spec')
6
+
7
+ # If you want to make this the default task
8
+ task :default => :spec
9
+
data/bin/rstsyn ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'rstsyn'
4
+
5
+ Rstsyn::Parser.start($<.to_a).each {|line| puts line}
data/lib/rstsyn.rb ADDED
@@ -0,0 +1,80 @@
1
+ require "rstsyn/version"
2
+
3
+ class String
4
+ def left_add_spaces val
5
+ extra_spaces = ''
6
+ val.times {extra_spaces += ' '}
7
+ return "#{extra_spaces}#{self.strip}"
8
+ end
9
+
10
+ def left_add_spaces! val
11
+ self.replace(left_add_spaces val)
12
+ end
13
+ end
14
+
15
+ module Rstsyn
16
+
17
+ class Parser
18
+ @min_spaces = 50
19
+
20
+ def self.start file_contents
21
+ converted_file = Array.new
22
+ potentional_heading = ''
23
+
24
+ file_contents.each do |line|
25
+ line.gsub!(/\t/, ' ')
26
+
27
+ if (!potentional_heading.empty?)
28
+ converted_file << potentional_heading
29
+
30
+ if self.isTildeLine? line
31
+ line = self.createTildeLine(potentional_heading.strip.length)
32
+ end
33
+ end
34
+
35
+ potentional_heading = ''
36
+ if self.isCommandwithParameters? line # :command: Parameters
37
+ converted_file << self.clean_command(line)
38
+ elsif self.isAdditionalParameter? line # Additional Paramaters
39
+ converted_file << self.clean_additional(line)
40
+ else # Everything Else
41
+ potentional_heading = line
42
+ end
43
+ end
44
+
45
+ converted_file << potentional_heading
46
+
47
+ return converted_file
48
+ end
49
+
50
+
51
+ def self.createTildeLine length
52
+ line = ''
53
+ length.times {line += '~'}
54
+ return line
55
+ end
56
+
57
+
58
+ def self.clean_additional line
59
+ return line.left_add_spaces!(@min_spaces)
60
+ end
61
+
62
+
63
+ def self.clean_command line
64
+ command = /^(?<command>\:\w+\:)\s+(?<params>.+)/.match(line)
65
+ return "#{command['command'].ljust(@min_spaces)}#{command['params']}"
66
+ end
67
+
68
+ def self.isCommandwithParameters? line
69
+ return (/^\:\w+\:\s+./ =~ line)
70
+ end
71
+
72
+ def self.isAdditionalParameter? line
73
+ return (/^\s+./ =~ line)
74
+ end
75
+
76
+ def self.isTildeLine? line
77
+ return (/^~~/ =~ line)
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,3 @@
1
+ module Rstsyn
2
+ VERSION = "0.0.1"
3
+ end
data/rstsyn.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rstsyn/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rstsyn"
8
+ spec.version = Rstsyn::VERSION
9
+ spec.authors = ["Stephen Yu"]
10
+ spec.email = ["s.yu@less3.com"]
11
+ spec.description = %q{Given an RST file, convert the file so it matches internal format and code style}
12
+ spec.summary = %q{Convert an RST file to match an internal format style}
13
+ spec.homepage = "https://github.com/stephenyu/rstsyn"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = ["rstsyn"]
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "rspec", "~> 0.0"
24
+ end
@@ -0,0 +1,44 @@
1
+ require 'spec_helper'
2
+ describe Rstsyn do
3
+
4
+ it 'valid command line is identified as such' do
5
+ line = ':precondition: Name of Precondition'
6
+
7
+ expect(Rstsyn::Parser.isCommandwithParameters? line).to be_kind_of(Fixnum)
8
+ expect(Rstsyn::Parser.isAdditionalParameter? line).to be(nil)
9
+ expect(Rstsyn::Parser.isTildeLine? line).to be(nil)
10
+ end
11
+
12
+ it 'valid additional parameter to identified as such' do
13
+ line = ' Parameter'
14
+
15
+ expect(Rstsyn::Parser.isCommandwithParameters? line).to be(nil)
16
+ expect(Rstsyn::Parser.isAdditionalParameter? line).to be_kind_of(Fixnum)
17
+ expect(Rstsyn::Parser.isTildeLine? line).to be(nil)
18
+ end
19
+
20
+ it 'valid tildeline to as such' do
21
+ line = '~~~~~~~~~'
22
+
23
+ expect(Rstsyn::Parser.isCommandwithParameters? line).to be(nil)
24
+ expect(Rstsyn::Parser.isAdditionalParameter? line).to be(nil)
25
+ expect(Rstsyn::Parser.isTildeLine? line).to be_kind_of(Fixnum)
26
+ end
27
+
28
+ it 'dirty command line is converted cleanly with spaces' do
29
+ line = ':precondition: Name of Precondition'
30
+
31
+ expect(Rstsyn::Parser.clean_command line).to eq(":precondition: Name of Precondition")
32
+ end
33
+
34
+ it 'dirty additional parameter line is converted cleanly with spaces' do
35
+ line = ' Parameter'
36
+
37
+ expect(Rstsyn::Parser.clean_additional line).to eq(" Parameter")
38
+ end
39
+
40
+ it 'create TidleLine of certain length' do
41
+ expect(Rstsyn::Parser.createTildeLine 10).to eq("~~~~~~~~~~")
42
+ end
43
+
44
+ end
@@ -0,0 +1,8 @@
1
+ require 'bundler/setup'
2
+ Bundler.setup
3
+
4
+ require 'rstsyn' # and any other gems you need
5
+
6
+ RSpec.configure do |config|
7
+ # some (optional) config here
8
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rstsyn
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Stephen Yu
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-05-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.0'
55
+ description: Given an RST file, convert the file so it matches internal format and
56
+ code style
57
+ email:
58
+ - s.yu@less3.com
59
+ executables:
60
+ - rstsyn
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - ".gitignore"
65
+ - Gemfile
66
+ - LICENSE.txt
67
+ - README.md
68
+ - Rakefile
69
+ - bin/rstsyn
70
+ - lib/rstsyn.rb
71
+ - lib/rstsyn/version.rb
72
+ - rstsyn.gemspec
73
+ - spec/parser_spec.rb
74
+ - spec/spec_helper.rb
75
+ homepage: https://github.com/stephenyu/rstsyn
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.4.3
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Convert an RST file to match an internal format style
99
+ test_files:
100
+ - spec/parser_spec.rb
101
+ - spec/spec_helper.rb