string-width-tanasinn 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.
@@ -0,0 +1,8 @@
1
+ require 'string-width-tanasinn/version'
2
+ require 'string-width-tanasinn/wcwidth'
3
+
4
+ module StringWidth
5
+ module Tanasinn
6
+ # Your code goes here...
7
+ end
8
+ end
@@ -1,5 +1,5 @@
1
1
  module StringWidth
2
2
  module Tanasinn
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -24,7 +24,7 @@ the Initial Developer. All Rights Reserved.
24
24
  ***** END LICENSE BLOCK *****
25
25
  =end
26
26
 
27
- require 'string-width/tanasinn/regexp'
27
+ require 'string-width-tanasinn/regexp'
28
28
 
29
29
  module StringWidth
30
30
  module Tanasinn
@@ -1,6 +1,6 @@
1
1
 
2
2
 
3
- $: << File.expand_path(File.join(File.dirname(__FILE__), '..','lib'))
3
+ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..','lib')))
4
4
 
5
5
  require 'rspec'
6
- require 'string-width/tanasinn'
6
+ require 'string-width-tanasinn'
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'string-width/tanasinn/version'
4
+ require 'string-width-tanasinn/version'
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "string-width-tanasinn"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: string-width-tanasinn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-20 00:00:00.000000000 Z
12
+ date: 2012-11-08 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: this gem provide module function that imported the algorithm to measure
15
15
  the width of the Charactor from `tanasinn' terminal emulator. The function is divided
@@ -26,10 +26,10 @@ files:
26
26
  - LICENSE.txt
27
27
  - README.md
28
28
  - Rakefile
29
- - lib/string-width/tanasinn.rb
30
- - lib/string-width/tanasinn/regexp.rb
31
- - lib/string-width/tanasinn/version.rb
32
- - lib/string-width/tanasinn/wcwidth.rb
29
+ - lib/string-width-tanasinn.rb
30
+ - lib/string-width-tanasinn/regexp.rb
31
+ - lib/string-width-tanasinn/version.rb
32
+ - lib/string-width-tanasinn/wcwidth.rb
33
33
  - spec/spec_helper.rb
34
34
  - spec/wcwidth_spec.rb
35
35
  - string-width-tanasinn.gemspec
@@ -1,8 +0,0 @@
1
- require 'string-width/tanasinn/version'
2
- require 'string-width/tanasinn/wcwidth'
3
-
4
- module StringWidth
5
- module Tanasinn
6
- # Your code goes here...
7
- end
8
- end