radix-sort 0.1.1 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 407481b3ccf2b81e60e2b00ee1245b3aef1c8444
4
- data.tar.gz: 2ec29ca26c5e4c398ecfc0250e281d5965ad274b
3
+ metadata.gz: e8b7e7f19362bd715a48fc0a7f0c83605352124b
4
+ data.tar.gz: 9f6a511890c48b4b96b8b1d5fc016a3074f31101
5
5
  SHA512:
6
- metadata.gz: 0de8a6aab8b52020c2c7bfaa2e2013bb8cb2b93747349de385db7addf49673abda074da906bceaab862c78027acb95dbdaa2cc34251c14d2be31083d71763ed5
7
- data.tar.gz: 71cec1471adb25ce3541abba9961bd5776c30e92ca30cdf0c0f10406fe00acd44913edd0d313ecedd8ce80001cf4a4a121ed61e144890110fdfde70ca5e67126
6
+ metadata.gz: 0e8d8349d800cf01f3b5256313b24d8f10219361de7d1dac1cf68aec827a496c4b93d12903c19a6cd304c63915c17573f21184d7f6c6e1630b0dad6b9a758a72
7
+ data.tar.gz: 51c5f9d26d678c8b9c536055afa76aa9e1c4bd2b972fe62bef0bb09e4bd8b14c3a3da3b72401b1bfbd80cb628029fdd7f40388d0dba751c8e239a249e43e0117
data/Gemfile CHANGED
@@ -1,4 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in radix-sort.gemspec
4
3
  gemspec
@@ -0,0 +1,3 @@
1
+ module RadixSort
2
+ VERSION = "1.0.0"
3
+ end
File without changes
@@ -1,24 +1,24 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'radix/sort/version'
4
+ require 'radix_sort/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = "radix-sort"
8
- spec.version = Radix::Sort::VERSION
9
- spec.authors = ["Manther"]
10
- spec.email = ["jason.manther.young@gmail.com"]
7
+ spec.name = 'radix-sort'
8
+ spec.version = RadixSort::VERSION
9
+ spec.authors = ['Manther']
10
+ spec.email = ['jason.manther.young@gmail.com']
11
11
 
12
12
  spec.description = %q{Perfomre radix-sort on numeric array.}
13
13
  spec.summary = %q{Perfomre radix-sort on numeric array.}
14
- spec.homepage = "https://github.com/Manther/radix-sort"
15
- spec.license = "MIT"
14
+ spec.homepage = 'https://github.com/Manther/radix-sort'
15
+ spec.license = 'MIT'
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
18
+ spec.bindir = 'exe'
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
- spec.require_paths = ["lib"]
20
+ spec.require_paths = ['lib']
21
21
 
22
- spec.add_development_dependency "bundler", "~> 1.11"
23
- spec.add_development_dependency "rake", "~> 10.0"
22
+ spec.add_development_dependency 'bundler', '~> 1.11'
23
+ spec.add_development_dependency 'rake', '~> 10.0'
24
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radix-sort
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manther
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-23 00:00:00.000000000 Z
11
+ date: 2016-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -54,8 +54,8 @@ files:
54
54
  - Rakefile
55
55
  - bin/console
56
56
  - bin/setup
57
- - lib/radix/sort.rb
58
- - lib/radix/sort/version.rb
57
+ - lib/radix_sort/version.rb
58
+ - lib/sort.rb
59
59
  - radix-sort.gemspec
60
60
  homepage: https://github.com/Manther/radix-sort
61
61
  licenses:
@@ -1,5 +0,0 @@
1
- module Radix
2
- module Sort
3
- VERSION = "0.1.1"
4
- end
5
- end