ralgorithms 0.1.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.
Files changed (2) hide show
  1. data/README.md +20 -0
  2. metadata +51 -0
data/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # RAlgorithms
2
+
3
+ Algorithms implemented in Ruby
4
+
5
+ ## Test
6
+
7
+ ruby sorting/test_helper.rb
8
+
9
+ ## Sorting algorithms:
10
+
11
+ * bubble sort: Sorting::BubbleSort.sort
12
+ * selection sort: Sorting::SelectionSort.sort
13
+ * heap sort: Sorting::HeapSort.sort
14
+ * smooth sort: Sorting::SmoothSort.sort
15
+ * insertion sort: Sorting::InsertionSort.sort
16
+ * shell sort: Sorting::ShellSort.sort
17
+ * library sort: Sorting::LibrarySort.sort
18
+ * merge sort: Sorting::MergeSort.sort
19
+ * quick sort: Sorting::QuickSort.sort
20
+ * intro sort: Sorting::IntroSort.sort
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ralgorithms
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Leon Li
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-03-19 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: Algorithms implemented in Ruby.
15
+ email: qianthinking@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ homepage: https://github.com/qianthinking/ralgorithms
22
+ licenses: []
23
+ post_install_message:
24
+ rdoc_options:
25
+ - --line-numbers
26
+ - --inline-source
27
+ - --title
28
+ - RAlgorithms
29
+ - --main
30
+ - README.md
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '1.2'
45
+ requirements: []
46
+ rubyforge_project:
47
+ rubygems_version: 1.8.10
48
+ signing_key:
49
+ specification_version: 2
50
+ summary: Algorithms implemented in Ruby.
51
+ test_files: []