rmmseg-cpp-traditional 0.0.2 → 1.0.0

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.
@@ -1,11 +1,11 @@
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 'rmmseg-cpp-traditional/version'
4
+ # require 'rmmseg-cpp-traditional/version'
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "rmmseg-cpp-traditional"
8
- gem.version = "0.0.2"
8
+ gem.version = "1.0.0"
9
9
  gem.authors = ["MichaelHsu"]
10
10
  gem.email = ["evenchange4@gmail.com"]
11
11
  gem.description = %q{rmmseg-cpp-traditional}
metadata CHANGED
@@ -3,10 +3,10 @@ name: rmmseg-cpp-traditional
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
+ - 1
6
7
  - 0
7
8
  - 0
8
- - 2
9
- version: 0.0.2
9
+ version: 1.0.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - MichaelHsu
@@ -29,12 +29,10 @@ extra_rdoc_files: []
29
29
 
30
30
  files:
31
31
  - .gitignore
32
- - Gemfile
33
32
  - History.txt
34
33
  - LICENSE.txt
35
34
  - Manifest.txt
36
35
  - README
37
- - README.md
38
36
  - Rakefile
39
37
  - bin/rmmseg
40
38
  - data/chars.dic
@@ -51,8 +49,6 @@ files:
51
49
  - ext/rmmseg/rules.h
52
50
  - ext/rmmseg/token.h
53
51
  - ext/rmmseg/word.h
54
- - lib/rmmseg-cpp-traditional.rb
55
- - lib/rmmseg-cpp-traditional/version.rb
56
52
  - lib/rmmseg.rb
57
53
  - lib/rmmseg/dictionary.rb
58
54
  - lib/rmmseg/ferret.rb
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in rmmseg-cpp-traditional.gemspec
4
- gemspec
data/README.md DELETED
@@ -1,29 +0,0 @@
1
- # Rmmseg::Cpp::Traditional
2
-
3
- TODO: Write a gem description
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'rmmseg-cpp-traditional'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
16
-
17
- $ gem install rmmseg-cpp-traditional
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
-
23
- ## Contributing
24
-
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
@@ -1,7 +0,0 @@
1
- module Rmmseg
2
- module Cpp
3
- module Traditional
4
- VERSION = "0.0.1"
5
- end
6
- end
7
- end
@@ -1,9 +0,0 @@
1
- require "rmmseg-cpp-traditional/version"
2
-
3
- module Rmmseg
4
- module Cpp
5
- module Traditional
6
- # Your code goes here...
7
- end
8
- end
9
- end