lbfgsb 0.3.1 → 0.5.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.
data/Rakefile DELETED
@@ -1,15 +0,0 @@
1
- require 'bundler/gem_tasks'
2
- require 'rspec/core/rake_task'
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- require 'rake/extensiontask'
7
-
8
- task :build => :compile
9
-
10
- Rake::ExtensionTask.new('lbfgsbext') do |ext|
11
- ext.ext_dir = 'ext/lbfgsb'
12
- ext.lib_dir = 'lib/lbfgsb'
13
- end
14
-
15
- task :default => [:clobber, :compile, :spec]
data/lbfgsb.gemspec DELETED
@@ -1,30 +0,0 @@
1
- require_relative 'lib/lbfgsb/version'
2
-
3
- Gem::Specification.new do |spec|
4
- spec.name = 'lbfgsb'
5
- spec.version = Lbfgsb::VERSION
6
- spec.authors = ['yoshoku']
7
- spec.email = ['yoshoku@outlook.com']
8
-
9
- spec.summary = 'Lbfgsb.rb is a Ruby binding for L-BFGS-B'
10
- spec.description = 'Lbfgsb.rb is a Ruby binding for L-BFGS-B'
11
- spec.homepage = 'https://github.com/yoshoku/lbfgsb.rb'
12
- spec.license = 'BSD-3-Clause'
13
-
14
- spec.metadata['homepage_uri'] = spec.homepage
15
- spec.metadata['source_code_uri'] = 'https://github.com/yoshoku/lbfgsb.rb'
16
- spec.metadata['changelog_uri'] = 'https://github.com/yoshoku/lbfgsb.rb/blob/main/CHANGELOG.md'
17
- spec.metadata['documentation_uri'] = 'https://yoshoku.github.io/lbfgsb.rb/doc/'
18
-
19
- # Specify which files should be added to the gem when it is released.
20
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23
- end
24
- spec.bindir = 'exe'
25
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
- spec.require_paths = ['lib']
27
- spec.extensions = ['ext/lbfgsb/extconf.rb']
28
-
29
- spec.add_runtime_dependency 'numo-narray', '>= 0.9.1'
30
- end