unsorted 0.0.1
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 +7 -0
- data/.gitignore +17 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +22 -0
- data/README.md +43 -0
- data/Rakefile +1 -0
- data/lib/unsorted.rb +13 -0
- data/lib/unsorted/version.rb +3 -0
- data/spec/spec_helper.rb +8 -0
- data/spec/unsorted_spec.rb +16 -0
- data/unsorted.gemspec +23 -0
- metadata +84 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9c9eca48db41268f8c80e97c754abddcc4dec82f
|
4
|
+
data.tar.gz: 867d4ac9f1bb3712df92def6b382bb07926df460
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: abec20f6197a2b2a0f5c250b394650707feae315e974c3919d8de7bcc85682af9c7ec768d9f6099356abd777d2ea9ef88ac0c7ba3e300fff23f7431fa84a1806
|
7
|
+
data.tar.gz: 42ccbd0a4deb5ab490853bdd058ae955cfb71c8349257822fd22f38102f152da948cd281eee0b4abd0f8b007fc6c51bec2b7618281a365071c63f2ad3823a1a4
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 TODO: Write your name
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# Unsorted
|
2
|
+
|
3
|
+
A simple gem that gives you an unsorted numeric array
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'unsorted'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install unsorted
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
#### Testing the gem out in IRB
|
22
|
+
|
23
|
+
`irb`
|
24
|
+
|
25
|
+
`require 'rubygems' # => true`
|
26
|
+
|
27
|
+
`require 'unsorted' # => true`
|
28
|
+
|
29
|
+
You are ready to use Unsorted gem in IRB
|
30
|
+
|
31
|
+
#### Get an unsorted array of a given size
|
32
|
+
|
33
|
+
`Unsorted.get(10) # => [10, 7, 6, 4, 5, 9, 1, 3, 2, 8]`
|
34
|
+
|
35
|
+
The lowest number in the unsorted array is 1. The highest number in the unsorted array is the size.
|
36
|
+
|
37
|
+
## Contributing
|
38
|
+
|
39
|
+
1. Fork it
|
40
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
41
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
42
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
43
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/unsorted.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require "unsorted/version"
|
2
|
+
|
3
|
+
module Unsorted
|
4
|
+
def self.grab(size)
|
5
|
+
raise ArgumentError, "only integers are allowed as input" unless check_argument_validity?(size)
|
6
|
+
|
7
|
+
unsorted = (1..size).to_a.shuffle
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.check_argument_validity?(input)
|
11
|
+
input.is_a? Integer
|
12
|
+
end
|
13
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "Unsorted" do
|
4
|
+
describe '#grab with invalid input' do
|
5
|
+
invalid_inputs = ["invalid", 43.43, "$23", "()*&"]
|
6
|
+
|
7
|
+
invalid_inputs.each do |invalid_input|
|
8
|
+
it { expect{Unsorted.grab(invalid_input)}.to raise_error(ArgumentError) }
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
it '#grab with valid input' do
|
13
|
+
valid_input = rand(500)
|
14
|
+
Unsorted.grab(valid_input).size.should == valid_input
|
15
|
+
end
|
16
|
+
end
|
data/unsorted.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'unsorted/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "unsorted"
|
8
|
+
spec.version = Unsorted::VERSION
|
9
|
+
spec.authors = ["Jason Kim"]
|
10
|
+
spec.email = ["iamjsonkim@gmail.com"]
|
11
|
+
spec.description = %q{A simple gem that gives you an unsorted numeric array}
|
12
|
+
spec.summary = %q{Gives an unsorted numeric array}
|
13
|
+
spec.homepage = "https://github.com/serv/unsorted"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: unsorted
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jason Kim
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-08-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: A simple gem that gives you an unsorted numeric array
|
42
|
+
email:
|
43
|
+
- iamjsonkim@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- .gitignore
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- lib/unsorted.rb
|
54
|
+
- lib/unsorted/version.rb
|
55
|
+
- spec/spec_helper.rb
|
56
|
+
- spec/unsorted_spec.rb
|
57
|
+
- unsorted.gemspec
|
58
|
+
homepage: https://github.com/serv/unsorted
|
59
|
+
licenses:
|
60
|
+
- MIT
|
61
|
+
metadata: {}
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options: []
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
requirements: []
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 2.0.3
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: Gives an unsorted numeric array
|
82
|
+
test_files:
|
83
|
+
- spec/spec_helper.rb
|
84
|
+
- spec/unsorted_spec.rb
|