rtl_that_string 0.1.0

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: d7752966a23a6506f024aae2c5478d7d061e3dfb
4
+ data.tar.gz: 802bfd4e86b754ca146aa6b6a0498ee3cfa8b313
5
+ SHA512:
6
+ metadata.gz: 23429f639ae92867ee120f567dd5c1f389a103d4a53cc298232be0e678ccf97c7c81b896a6bda811962d77d959f26401a800aa177a303d80a6bf32f7a4ff4034
7
+ data.tar.gz: 6a78923725d71f68020cb966846b171c77756b9259cd04cfd812cf2a4d1f53798dd191388289b646803c1e7218152920de565004a2731876cef52fb6f2547324
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.6
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rtl_that_string.gemspec
4
+ gemspec
5
+
6
+ gem 'string-direction', '~> 0.0.4', :git => 'git@github.com:craig-day/string-direction.git', :branch => 'craig-day/cleanup' # https://github.com/waiting-for-dev/string-direction/pull/1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Craig Day
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # RtlThatString
2
+
3
+ RtlThatString is a small, simple gem that helps support right-to-left text and html based on content.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'rtl_that_string'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install rtl_that_string
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ require 'rtl_that_string'
25
+
26
+ "هذا اختبار".with_rtl
27
+ # => "\u202Fهذا اختبار\u202E"
28
+ ```
29
+
30
+ ## Development
31
+
32
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
33
+
34
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/craig-day/rtl_that_string.
39
+
40
+
41
+ ## License
42
+
43
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "rtl_that_string"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,80 @@
1
+ require 'string-direction'
2
+
3
+ module RtlThatString
4
+ module Base
5
+ # String borders
6
+ # http://www.w3.org/International/questions/qa-bidi-unicode-controls#pairedcontrols
7
+ RTL_START = "\u202F".freeze # RIGHT-TO-LEFT MARK
8
+ RTL_END = "\u202E".freeze # LEFT-TO-RIGHT MARK
9
+ BIDI_START = "\u202B".freeze # RIGHT-TO-LEFT EMBEDDING (RLE)
10
+ BIDI_END = "\u202C".freeze # POP DIRECTIONAL FORMATTING (PDF)
11
+
12
+ # Html wrapping tags
13
+ # http://www.w3.org/International/questions/qa-bidi-unicode-controls#correspondance
14
+ BDO_OPEN = '<bdo dir="rtl">'.freeze
15
+ BDO_CLOSE = '</bdo>'.freeze
16
+ BDE_OPEN = '<bde dir="rtl">'.freeze
17
+ BDE_CLOSE = '</bde>'.freeze
18
+
19
+ STRIP_TAGS_REGEX = /<.*?>/.freeze # Strip any html tag, with or without attributes
20
+
21
+ # Wrap plain text or html in direction control unicode characters or tags
22
+ #
23
+ # If the string is detected as all RTL characters it will be bordered with
24
+ # directional override characters. If it has mixed RTL and LTR it will get
25
+ # wrapped with bi-directional override characters.
26
+ #
27
+ # If the `html: true` option is passed the string will get wrapped in either
28
+ # a <bdo></bdo> or <bde></bde> tag.
29
+ def with_rtl(options = {})
30
+ return with_rtl_html(options) if options.delete(:html)
31
+
32
+ case direction
33
+ when StringDirection::RTL
34
+ rtl_string_borders
35
+ when StringDirection::BIDI
36
+ bidi_string_borders
37
+ else
38
+ self
39
+ end
40
+ end
41
+
42
+ # Modifies self with the result from `with_rtl`
43
+ def with_rtl!(options = {})
44
+ self.replace with_rtl(options)
45
+ end
46
+
47
+ # Evaluate the direction of text in an HTML blob by first removing the HTML
48
+ # tags, then checking the plain text, then returning a wrapped blob of HTML
49
+ def with_rtl_html(options = {})
50
+ plain_text = self.gsub(STRIP_TAGS_REGEX, '')
51
+
52
+ case plain_text.direction
53
+ when StringDirection::RTL
54
+ rtl_html_borders
55
+ when StringDirection::BIDI
56
+ bidi_html_borders
57
+ else
58
+ self
59
+ end
60
+ end
61
+
62
+ private
63
+
64
+ def rtl_string_borders
65
+ raise "must be implemented by submodule"
66
+ end
67
+
68
+ def bidi_string_borders
69
+ raise "must be implemented by submodule"
70
+ end
71
+
72
+ def rtl_html_borders
73
+ raise "must be implemented by submodule"
74
+ end
75
+
76
+ def bidi_html_borders
77
+ raise "must be implemented by submodule"
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,25 @@
1
+ require_relative './base'
2
+
3
+ module RtlThatString
4
+ module SafeBuffer
5
+ include RtlThatString::Base
6
+
7
+ private
8
+
9
+ def rtl_string_borders
10
+ prepend(RTL_START).concat(RTL_END)
11
+ end
12
+
13
+ def bidi_string_borders
14
+ prepend(BIDI_START).concat(BIDI_END)
15
+ end
16
+
17
+ def rtl_html_borders
18
+ prepend(BDO_OPEN).concat(BDO_CLOSE)
19
+ end
20
+
21
+ def bidi_html_borders
22
+ prepend(BDE_OPEN).concat(BDE_CLOSE)
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,25 @@
1
+ require_relative './base'
2
+
3
+ module RtlThatString
4
+ module String
5
+ include RtlThatString::Base
6
+
7
+ private
8
+
9
+ def rtl_string_borders
10
+ "#{RTL_START}#{self}#{RTL_END}"
11
+ end
12
+
13
+ def bidi_string_borders
14
+ "#{BIDI_START}#{self}#{BIDI_END}"
15
+ end
16
+
17
+ def rtl_html_borders
18
+ "#{BDO_OPEN}#{self}#{BDO_CLOSE}"
19
+ end
20
+
21
+ def bidi_html_borders
22
+ "#{BDE_OPEN}#{self}#{BDE_CLOSE}"
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,3 @@
1
+ module RtlThatString
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,6 @@
1
+ require 'rtl_that_string/version'
2
+ require 'rtl_that_string/string'
3
+ require 'rtl_that_string/safe_buffer' if defined?(ActiveSupport)
4
+
5
+ String.send :include, RtlThatString::String
6
+ ActiveSupport::SafeBuffer.send :include, RtlThatString::SafeBuffer if defined?(ActiveSupport)
@@ -0,0 +1,33 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rtl_that_string/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rtl_that_string"
8
+ spec.version = RtlThatString::VERSION
9
+ spec.authors = ["Craig Day"]
10
+ spec.email = ["cday@zendesk.com"]
11
+
12
+ spec.summary = %q{Small library to wrap text/html in RTL markers/tags}
13
+ spec.description = %q{Small library to wrap text/html in RTL markers/tags}
14
+ spec.homepage = "https://github.com/craig-day/"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
+ # else
22
+ # raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ # end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "bundler", "~> 1.10"
31
+ spec.add_development_dependency "rake", "~> 10.0"
32
+ spec.add_development_dependency "rspec"
33
+ end
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rtl_that_string
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Craig Day
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-09-04 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.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
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'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Small library to wrap text/html in RTL markers/tags
56
+ email:
57
+ - cday@zendesk.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - Gemfile
66
+ - LICENSE.txt
67
+ - README.md
68
+ - Rakefile
69
+ - bin/console
70
+ - bin/setup
71
+ - lib/rtl_that_string.rb
72
+ - lib/rtl_that_string/base.rb
73
+ - lib/rtl_that_string/safe_buffer.rb
74
+ - lib/rtl_that_string/string.rb
75
+ - lib/rtl_that_string/version.rb
76
+ - rtl_that_string.gemspec
77
+ homepage: https://github.com/craig-day/
78
+ licenses:
79
+ - MIT
80
+ metadata: {}
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubyforge_project:
97
+ rubygems_version: 2.2.3
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: Small library to wrap text/html in RTL markers/tags
101
+ test_files: []
102
+ has_rdoc: