FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
algorithms/algorithms.gemspec at master · kanwei/algorithms · GitHub
kanwei
/
algorithms
Public
Notifications
You must be signed in to change notification settings
Fork
340
Star
2.7k
Code
Issues
13
Pull requests
3
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
algorithms
/
algorithms.gemspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (20 loc) · 2.29 KB
Breadcrumbs
algorithms
/
algorithms.gemspec
Copy path
File metadata and controls
22 lines (20 loc) · 2.29 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
Gem
::
Specification
.
new
do
|
s
|
s
.
name
=
"algorithms"
s
.
version
=
"1.1.0"
s
.
authors
=
[
"Kanwei Li"
]
s
.
email
=
"kanwei@gmail.com"
s
.
license
=
'MIT'
s
.
date
=
"2023-11-11"
s
.
summary
=
"Useful algorithms and data structures for Ruby. Optional C extensions."
s
.
description
=
"Heap, Priority Queue, Deque, Stack, Queue, Red-Black Trees, Splay Trees, sorting algorithms, and more"
if
defined?
(
RUBY_ENGINE
)
&&
RUBY_ENGINE
==
'jruby'
s
.
platform
=
"java"
else
s
.
extensions
=
[
"ext/algorithms/string/extconf.rb"
,
"ext/containers/bst/extconf.rb"
,
"ext/containers/deque/extconf.rb"
,
"ext/containers/rbtree_map/extconf.rb"
,
"ext/containers/splaytree_map/extconf.rb"
]
end
s
.
files
=
[
"Gemfile"
,
"CHANGELOG.markdown"
,
"Manifest"
,
"README.markdown"
,
"Rakefile"
,
"algorithms.gemspec"
,
"benchmarks/deque.rb"
,
"benchmarks/sorts.rb"
,
"benchmarks/treemaps.rb"
,
"ext/algorithms/string/extconf.rb"
,
"ext/algorithms/string/string.c"
,
"ext/containers/bst/bst.c"
,
"ext/containers/bst/extconf.rb"
,
"ext/containers/deque/deque.c"
,
"ext/containers/deque/extconf.rb"
,
"ext/containers/rbtree_map/extconf.rb"
,
"ext/containers/rbtree_map/rbtree.c"
,
"ext/containers/splaytree_map/extconf.rb"
,
"ext/containers/splaytree_map/splaytree.c"
,
"lib/algorithms.rb"
,
"lib/algorithms/search.rb"
,
"lib/algorithms/sort.rb"
,
"lib/algorithms/string.rb"
,
"lib/containers/deque.rb"
,
"lib/containers/heap.rb"
,
"lib/containers/kd_tree.rb"
,
"lib/containers/priority_queue.rb"
,
"lib/containers/queue.rb"
,
"lib/containers/rb_tree_map.rb"
,
"lib/containers/splay_tree_map.rb"
,
"lib/containers/stack.rb"
,
"lib/containers/suffix_array.rb"
,
"lib/containers/trie.rb"
,
"spec/bst_gc_mark_spec.rb"
,
"spec/bst_spec.rb"
,
"spec/deque_gc_mark_spec.rb"
,
"spec/deque_spec.rb"
,
"spec/heap_spec.rb"
,
"spec/kd_expected_out.txt"
,
"spec/kd_test_in.txt"
,
"spec/kd_tree_spec.rb"
,
"spec/map_gc_mark_spec.rb"
,
"spec/priority_queue_spec.rb"
,
"spec/queue_spec.rb"
,
"spec/rb_tree_map_spec.rb"
,
"spec/search_spec.rb"
,
"spec/sort_spec.rb"
,
"spec/splay_tree_map_spec.rb"
,
"spec/stack_spec.rb"
,
"spec/string_spec.rb"
,
"spec/suffix_array_spec.rb"
,
"spec/trie_spec.rb"
]
s
.
homepage
=
"https://github.com/kanwei/algorithms"
s
.
rdoc_options
=
[
"--line-numbers"
,
"--inline-source"
,
"--title"
,
"Algorithms"
,
"--main"
,
"README.markdown"
]
s
.
require_paths
=
[
"lib"
,
"ext"
]
end
Back
|
FazBrowse Home
|
New Git URL