rmmseg_seoaqua 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: d758ed51d7fbf748ea0572763d96c5a628558fa9
4
+ data.tar.gz: 80371adeb4b208dea927138fbc4414a227c58c4e
5
+ SHA512:
6
+ metadata.gz: eb34856951c83fa9e729594f9f78189edc99bbc47b2150d4005057f89566c095ce9548f00d7e2889c9b993b54d04128b8fafb41060b7085e0c6d637f54c3e0bf
7
+ data.tar.gz: c62360966c6f999e4572920f204621e924ccb0c1dc24eafe8f943304e05228b236281e9a88212c7a2ec54fd0f73e13bfc6daecb7ef9fad947df52076debe1be2
data/.autotest ADDED
@@ -0,0 +1,25 @@
1
+ # -*- ruby -*-
2
+
3
+ require "autotest/restart"
4
+
5
+ # Autotest.add_hook :initialize do |at|
6
+ # at.testlib = "minitest/unit"
7
+ #
8
+ # at.extra_files << "../some/external/dependency.rb"
9
+ #
10
+ # at.libs << ":../some/external"
11
+ #
12
+ # at.add_exception "vendor"
13
+ #
14
+ # at.add_mapping(/dependency.rb/) do |f, _|
15
+ # at.files_matching(/test_.*rb$/)
16
+ # end
17
+ #
18
+ # %w(TestA TestB).each do |klass|
19
+ # at.extra_class_map[klass] = "test/test_misc.rb"
20
+ # end
21
+ # end
22
+
23
+ # Autotest.add_hook :run_command do |at|
24
+ # system "rake build"
25
+ # end
data/.gemtest ADDED
File without changes
data/History.txt ADDED
@@ -0,0 +1,6 @@
1
+ === 1.0.0 / 2014-06-24
2
+
3
+ * 1 major enhancement
4
+
5
+ * Birthday!
6
+
data/Manifest.txt ADDED
@@ -0,0 +1,8 @@
1
+ .autotest
2
+ History.txt
3
+ Manifest.txt
4
+ README.txt
5
+ Rakefile
6
+ bin/rmmseg_seoaqua
7
+ lib/rmmseg_seoaqua.rb
8
+ test/test_rmmseg_seoaqua.rb
data/README.txt ADDED
@@ -0,0 +1,61 @@
1
+ = rmmseg_seoaqua
2
+
3
+ home :: http://github.com/seoaqua/rmmseg_seoaqua
4
+ code :: FIX (url)
5
+ rdoc :: FIX (url)
6
+ bugs :: FIX (url)
7
+ ... etc ...
8
+
9
+ == DESCRIPTION:
10
+
11
+ FIX (describe your package)
12
+
13
+ == FEATURES/PROBLEMS:
14
+
15
+ * FIX (list of features or problems)
16
+
17
+ == SYNOPSIS:
18
+
19
+ FIX (code sample of usage)
20
+
21
+ == REQUIREMENTS:
22
+
23
+ * FIX (list of requirements)
24
+
25
+ == INSTALL:
26
+
27
+ * FIX (sudo gem install, anything else)
28
+
29
+ == DEVELOPERS:
30
+
31
+ After checking out the source, run:
32
+
33
+ $ rake newb
34
+
35
+ This task will install any missing dependencies, run the tests/specs,
36
+ and generate the RDoc.
37
+
38
+ == LICENSE:
39
+
40
+ (The MIT License)
41
+
42
+ Copyright (c) 2014 FIX
43
+
44
+ Permission is hereby granted, free of charge, to any person obtaining
45
+ a copy of this software and associated documentation files (the
46
+ 'Software'), to deal in the Software without restriction, including
47
+ without limitation the rights to use, copy, modify, merge, publish,
48
+ distribute, sublicense, and/or sell copies of the Software, and to
49
+ permit persons to whom the Software is furnished to do so, subject to
50
+ the following conditions:
51
+
52
+ The above copyright notice and this permission notice shall be
53
+ included in all copies or substantial portions of the Software.
54
+
55
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
56
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
57
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
58
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
59
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
60
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
61
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,27 @@
1
+ # -*- ruby -*-
2
+
3
+ require "rubygems"
4
+ require "hoe"
5
+
6
+ Hoe.plugin :compiler
7
+ # Hoe.plugin :gem_prelude_sucks
8
+ # Hoe.plugin :inline
9
+ Hoe.plugin :minitest
10
+ # Hoe.plugin :racc
11
+ # Hoe.plugin :rcov
12
+ # Hoe.plugin :rdoc
13
+
14
+ Hoe.spec "rmmseg_seoaqua" do
15
+ developer('pluskid', 'http://pluskid.org')
16
+ developer('Charles Liu', 'seoaqua@qq.com')
17
+ self.spec_extras = { :extensions => ["ext/rmmseg_seoaqua/extconf.rb"] }
18
+ # HEY! If you fill these out in ~/.hoe_template/default/Rakefile.erb then
19
+ # you'll never have to touch them again!
20
+ # (delete this comment too, of course)
21
+
22
+ # developer("FIX", "FIX@example.com")
23
+
24
+ # license "MIT" # this should match the license in the README
25
+ end
26
+
27
+ # vim: syntax=ruby
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ abort "you need to write me"
@@ -0,0 +1,17 @@
1
+ require 'mkmf'
2
+
3
+ CONFIG['LDSHARED'] = CONFIG['LDSHARED'].sub(/^\$\(CC\)/, 'g++')
4
+
5
+ # if RUBY_PLATFORM =~ /darwin/
6
+ # # CONFIG['LDSHARED'] = 'g++ --dynamiclib -flat_namespace -undefined suppress'
7
+ # CONFIG['LDSHARED'] = 'g++ --dynamiclib'
8
+ # elsif RUBY_PLATFORM =~ /linux/
9
+ # CONFIG['LDSHARED'] = 'g++ -shared'
10
+ # end
11
+
12
+ if RUBY_PLATFORM =~ /darwin/ and `which brew`.empty?
13
+ CONFIG['LDSHARED'] = 'g++ -dynamiclib -single_module -flat_namespace -undefined suppress'
14
+ end
15
+
16
+ $objs = ['algor.o', 'dict.o', 'memory.o', 'rmmseg.o']
17
+ create_makefile('rmmseg')
@@ -0,0 +1,4 @@
1
+ require 'rmmseg_seoaqua/rmmseg_seoaqua'
2
+ class RmmsegSeoaqua
3
+ VERSION = "0.0.1"
4
+ end
File without changes
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rmmseg_seoaqua
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - pluskid
8
+ - Charles Liu
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-06-25 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: minitest
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '5.3'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '5.3'
28
+ - !ruby/object:Gem::Dependency
29
+ name: rdoc
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '4.0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '4.0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rake-compiler
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '0.7'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '0.7'
56
+ - !ruby/object:Gem::Dependency
57
+ name: hoe
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '3.12'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '3.12'
70
+ description: FIX (describe your package)
71
+ email:
72
+ - http://pluskid.org
73
+ - seoaqua@qq.com
74
+ executables:
75
+ - rmmseg_seoaqua
76
+ extensions:
77
+ - ext/rmmseg_seoaqua/extconf.rb
78
+ extra_rdoc_files:
79
+ - History.txt
80
+ - Manifest.txt
81
+ - README.txt
82
+ files:
83
+ - ".autotest"
84
+ - ".gemtest"
85
+ - History.txt
86
+ - Manifest.txt
87
+ - README.txt
88
+ - Rakefile
89
+ - bin/rmmseg_seoaqua
90
+ - ext/rmmseg_seoaqua/extconf.rb
91
+ - lib/rmmseg_seoaqua.rb
92
+ - test/test_rmmseg_seoaqua.rb
93
+ homepage: http://github.com/seoaqua/rmmseg_seoaqua
94
+ licenses:
95
+ - MIT
96
+ metadata: {}
97
+ post_install_message:
98
+ rdoc_options:
99
+ - "--main"
100
+ - README.txt
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubyforge_project:
115
+ rubygems_version: 2.2.2
116
+ signing_key:
117
+ specification_version: 4
118
+ summary: FIX (describe your package)
119
+ test_files:
120
+ - test/test_rmmseg_seoaqua.rb