Squirreler 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/Squirreler.gemspec +23 -0
- data/lib/Squirreler.rb +40 -0
- data/lib/Squirreler/version.rb +3 -0
- metadata +81 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2037e3efa153ae05fa9393d794b5fee0c263c5c8
|
4
|
+
data.tar.gz: c5c2d4667409d287155acd891cc6a2c2a1f8848f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 80dd3ed301d7c23c1a6a36fd24b5d7f4534d988a26c3e82720be10f6e124bf67ad03d214ab22f96b3e070c873bf218d3fe3a0f4a80610e30533cdb1f2bfaea80
|
7
|
+
data.tar.gz: cc82c064de31eb5bd67d65d5e6e9446e7b280bfc2d596d4e8e9f919640459a437e96ce01d4273b4a26e21e0a326a54188b6846f5168fcd6d867644eece4fa5e6
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Elliott Young
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
22
|
+
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Elliott Young
|
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,31 @@
|
|
1
|
+
# Squirreler
|
2
|
+
|
3
|
+
A Very Simple Ruby gem that prints an ASCII Squirrel to the console.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'Squirreler'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install Squirreler
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
1. Fork it ( https://github.com/[my-github-username]/Squirreler/fork )
|
28
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
29
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
30
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/Squirreler.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 'Squirreler/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "Squirreler"
|
8
|
+
spec.version = Squirreler::VERSION
|
9
|
+
spec.authors = ["Elliott Young", "John Schulz"]
|
10
|
+
spec.email = ["elliott.a.young@gmail.com"]
|
11
|
+
spec.summary = "%q{Prints an ASCII Squirrel to the Console}"
|
12
|
+
spec.description = "%q{Prints an ASCII Squirrel to the Console}"
|
13
|
+
spec.homepage = "https://github.com/ElliottAYoung/SquirrelerGem"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
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.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
data/lib/Squirreler.rb
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
require "Squirreler/version"
|
2
|
+
|
3
|
+
module Squirreler
|
4
|
+
def self.print_squirrel
|
5
|
+
puts "__________¶¶¶¶¶¶¶¶¶¶¶"
|
6
|
+
puts "_______¶¶¶¶_______¶¶¶¶¶¶"
|
7
|
+
puts "_____¶¶¶¶¶_____________¶¶¶"
|
8
|
+
puts "____¶¶¶¶¶¶¶_______________¶¶"
|
9
|
+
puts "_____¶¶¶___________________¶"
|
10
|
+
puts "____¶¶¶¶¶¶¶¶¶¶_____________¶¶___________¶"
|
11
|
+
puts "________¶¶¶________________¶¶______¶¶__¶¶¶"
|
12
|
+
puts "______¶¶¶¶¶¶_______________¶¶______¶¶¶¶__¶¶"
|
13
|
+
puts "___________¶¶¶_____________¶¶______¶¶_¶_¶¶"
|
14
|
+
puts "____________¶¶____________¶¶_______¶¶_¶_¶"
|
15
|
+
puts "___________¶¶¶__________¶¶¶_____¶¶¶¶____¶¶"
|
16
|
+
puts "__________¶¶¶__________¶¶¶__¶¶¶¶¶¶_______¶¶¶¶"
|
17
|
+
puts "________¶¶¶__________¶¶¶¶¶¶¶¶¶______________¶¶"
|
18
|
+
puts "______¶¶¶___________¶¶¶¶¶¶_______________¶¶_¶¶"
|
19
|
+
puts "____¶¶¶____________¶¶¶¶_________________¶¶¶_¶¶"
|
20
|
+
puts "___¶¶¶____________¶¶¶¶_____________¶¶¶______¶¶"
|
21
|
+
puts "__¶¶_____________¶¶¶_____________¶¶¶¶¶¶¶____¶¶"
|
22
|
+
puts "_¶¶_____________¶¶¶_________________¶¶¶¶¶¶¶¶¶__¶¶"
|
23
|
+
puts "¶¶______________¶¶_____________________¶¶____¶¶¶¶"
|
24
|
+
puts "¶¶_____________¶¶¶_______________¶¶¶_____¶¶¶¶¶__¶"
|
25
|
+
puts "¶¶_____________¶¶____________¶¶¶¶¶¶¶¶¶¶¶¶____¶¶__¶"
|
26
|
+
puts "¶¶_____________¶¶______________¶¶¶¶_____¶¶¶¶_¶¶¶_¶"
|
27
|
+
puts "¶_____________¶¶_________________¶¶______¶¶¶¶¶¶_¶¶"
|
28
|
+
puts "¶¶____________¶¶__________________¶¶______¶¶___¶¶"
|
29
|
+
puts "¶¶____________¶¶__________________¶¶______¶¶¶¶¶"
|
30
|
+
puts "_¶¶__________¶¶¶__________________¶¶"
|
31
|
+
puts "__¶_________¶¶¶¶________________¶¶¶¶¶¶¶"
|
32
|
+
puts "___¶¶______¶¶¶¶¶_______________¶¶¶¶¶¶¶¶¶"
|
33
|
+
puts "____¶¶¶_¶¶¶¶¶¶¶¶______________¶¶¶¶¶¶¶¶¶¶"
|
34
|
+
puts "______¶¶¶¶_____¶¶___________________¶¶"
|
35
|
+
puts "________________¶¶¶_______________¶__¶"
|
36
|
+
puts "_________________¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶__¶¶¶"
|
37
|
+
puts "____________________¶¶¶¶¶¶¶___¶¶¶¶¶¶¶"
|
38
|
+
puts "———————————————————————————————————————————————————"
|
39
|
+
end
|
40
|
+
end
|
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Squirreler
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Elliott Young
|
8
|
+
- John Schulz
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-01-24 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ~>
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '1.7'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '1.7'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rake
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ~>
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '10.0'
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ~>
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '10.0'
|
42
|
+
description: '%q{Prints an ASCII Squirrel to the Console}'
|
43
|
+
email:
|
44
|
+
- elliott.a.young@gmail.com
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE
|
51
|
+
- LICENSE.txt
|
52
|
+
- README.md
|
53
|
+
- Rakefile
|
54
|
+
- Squirreler.gemspec
|
55
|
+
- lib/Squirreler.rb
|
56
|
+
- lib/Squirreler/version.rb
|
57
|
+
homepage: https://github.com/ElliottAYoung/SquirrelerGem
|
58
|
+
licenses:
|
59
|
+
- MIT
|
60
|
+
metadata: {}
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
requirements: []
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 2.0.14
|
78
|
+
signing_key:
|
79
|
+
specification_version: 4
|
80
|
+
summary: '%q{Prints an ASCII Squirrel to the Console}'
|
81
|
+
test_files: []
|