ruby-mpfi 0.0.2 → 0.0.3

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.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.0.3 2009-12-19
2
+ * 1 major enhancement:
3
+ * Add methods MPFI, MPFI::Complex, MPFI::Matrix, MPFI::SquareMatrix, MPFI::ColumnVector, and MPFI::RowVector.
4
+
1
5
  === 0.0.1 2009-12-13
2
6
 
3
7
  * 1 major enhancement:
data/Manifest.txt CHANGED
@@ -6,11 +6,9 @@ Rakefile
6
6
  ext/mpfi/extconf.rb
7
7
  ext/mpfi/func_mpfi_extention.c
8
8
  ext/mpfi/func_mpfi_extention.h
9
- ext/mpfi/make_c_source.rb
10
9
  ext/mpfi/ruby_mpfi.c
11
10
  ext/mpfi/ruby_mpfi.h
12
11
  ext/mpfi/ruby_mpfr.h
13
- ext/mpfi/yasnippet_mpfi.el
14
12
  ext/mpfi_complex/mpfi/extconf.rb
15
13
  ext/mpfi_complex/mpfi/func_mpfi_extention.h
16
14
  ext/mpfi_complex/mpfi/func_ruby_mpfi_complex.c
@@ -24,9 +22,7 @@ ext/mpfi_matrix/mpfi/func_mpfi_extention.h
24
22
  ext/mpfi_matrix/mpfi/func_mpfi_matrix.c
25
23
  ext/mpfi_matrix/mpfi/func_mpfi_matrix.h
26
24
  ext/mpfi_matrix/mpfi/func_mpfr_matrix.h
27
- ext/mpfi_matrix/mpfi/func_ruby_mpfi_complex.h
28
25
  ext/mpfi_matrix/mpfi/ruby_mpfi.h
29
- ext/mpfi_matrix/mpfi/ruby_mpfi_complex.h
30
26
  ext/mpfi_matrix/mpfi/ruby_mpfi_matrix.c
31
27
  ext/mpfi_matrix/mpfi/ruby_mpfi_matrix.h
32
28
  ext/mpfi_matrix/mpfi/ruby_mpfr.h
data/README.rdoc CHANGED
@@ -1,6 +1,7 @@
1
1
  = ruby-mpfi
2
2
 
3
- * http://github.com/#{github_username}/#{project_name}
3
+ * http://rubyforge.org/projects/ruby-mpfr/
4
+ * http://gemcutter.org/gems/ruby-mpfi/
4
5
 
5
6
  == DESCRIPTION:
6
7
 
@@ -14,35 +15,30 @@ FIX (describe your package)
14
15
 
15
16
  FIX (code sample of usage)
16
17
 
17
- == REQUIREMENTS:
18
+ == Requirements:
18
19
 
19
- * FIX (list of requirements)
20
+ * MPFR
21
+ * MPFI
22
+ * ruby-mpfr
20
23
 
21
- == INSTALL:
24
+ == Install:
22
25
 
23
- * FIX (sudo gem install, anything else)
26
+ $ sudo gem install ruby-mpfi
24
27
 
25
- == LICENSE:
28
+ == License:
26
29
 
27
- (The MIT License)
30
+ ruby-mpfi
31
+ Copyright (C) 2009 Takayuki YAMAGUCHI
28
32
 
29
- Copyright (c) 2009 FIXME full name
33
+ This program is free software; you can redistribute it and/or modify it under
34
+ the terms of the GNU Lesser General Public License as published by the Free
35
+ Software Foundation; either version 3 of the License, or (at your option) any
36
+ later version.
30
37
 
31
- Permission is hereby granted, free of charge, to any person obtaining
32
- a copy of this software and associated documentation files (the
33
- 'Software'), to deal in the Software without restriction, including
34
- without limitation the rights to use, copy, modify, merge, publish,
35
- distribute, sublicense, and/or sell copies of the Software, and to
36
- permit persons to whom the Software is furnished to do so, subject to
37
- the following conditions:
38
+ This program is distributed in the hope that it will be useful, but WITHOUT
39
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
40
+ FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
41
+ details.
38
42
 
39
- The above copyright notice and this permission notice shall be
40
- included in all copies or substantial portions of the Software.
41
-
42
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
43
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
44
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
45
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
46
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
47
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
48
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
43
+ You should have received a copy of the GNU General Public License along with
44
+ this program. If not, see <http://www.gnu.org/licenses/>.
data/Rakefile CHANGED
@@ -14,8 +14,9 @@ $hoe = Hoe.spec 'ruby-mpfi' do
14
14
  self.developer 'Takayuki YAMAGUCHI', 'd@ytak.info'
15
15
  self.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
16
16
  self.rubyforge_name = self.name # TODO this is default value
17
- # self.extra_deps = [['activesupport','>= 2.0.2']]
17
+ self.extra_deps = [['ruby-mpfr','>= 0.0.4']]
18
18
  self.spec_extras[:extensions] = ["ext/mpfi/extconf.rb", "ext/mpfi_complex/mpfi/extconf.rb", "ext/mpfi_matrix/mpfi/extconf.rb"]
19
+ self.extra_rdoc_files << 'README.rdoc'
19
20
  end
20
21
 
21
22
  require 'newgem/tasks'