the_south 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 15dee40c12a2caeb971e5c31cc34d3ad03dcc5eb
4
+ data.tar.gz: ce381a4a4519dc3b9023d0dbeb4443efd893fa7d
5
+ SHA512:
6
+ metadata.gz: 53a8f28f1a6e0f1c7aeeadc932240f78164463db5fecdbe51549b1964e400f56cfc28f5104acd6b80f961363b3da7ac8f6e1479a9092b277ae1cddd9e5745d84
7
+ data.tar.gz: 6ee6f87e4e01ea683962e3732838e0bd708a7762ec844a702aea8c9367bb932ec5f0efad151332eacef6b84472aba3931e0dca131f69c9c248c8e998bed28c6a
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in the_south.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Andy Borsz
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,51 @@
1
+ # The South: The Gem
2
+
3
+ This charming yet useless gem injects Southern hospitality into any Ruby program.
4
+
5
+ I assure you I've lived there long enough to know.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'the_south'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install the_south
20
+
21
+ ## Usage
22
+
23
+ ```
24
+ South.rise_again
25
+ ```
26
+
27
+ If you're adament:
28
+
29
+ ```
30
+ South.rise_again!
31
+ ```
32
+
33
+ When you're uncertain:
34
+
35
+ ```
36
+ South.rise_again?
37
+ ```
38
+
39
+ For a complete list of options use `South.singleton_methods`
40
+
41
+ ## Contributing
42
+
43
+ 1. Fork it
44
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
45
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
46
+ 4. Push to the branch (`git push origin my-new-feature`)
47
+ 5. Create new Pull Request
48
+
49
+ ## Credit
50
+
51
+ Thanks to [@syntaxritual](https://github.com/syntaxritual) for being a pal.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/lib/the_south.rb ADDED
@@ -0,0 +1,53 @@
1
+ require "the_south/version"
2
+
3
+ module South
4
+
5
+ [
6
+ :rise,
7
+ :rise!,
8
+ :rise?,
9
+ :rising,
10
+ :rising!,
11
+ :rising?,
12
+ :will_rise,
13
+ :will_rise!,
14
+ :will_rise?,
15
+ :is_rising,
16
+ :is_rising!,
17
+ :is_rising?,
18
+ :rise_again,
19
+ :rise_again!,
20
+ :rise_again?,
21
+ :shall_rise,
22
+ :shall_rise!,
23
+ :shall_rise?,
24
+ :shall_rise_again,
25
+ :shall_rise_again!,
26
+ :shall_rise_again?,
27
+ :is_rising_again,
28
+ :is_rising_again!,
29
+ :is_rising_again?,
30
+ :will_rise_again,
31
+ :will_rise_again!,
32
+ :will_rise_again?,
33
+ :yall_come_back_now,
34
+ ].each do |aint|
35
+ define_singleton_method aint do
36
+ false
37
+ end
38
+ end
39
+
40
+ [
41
+ :sweet_tea,
42
+ :sweet_tea!,
43
+ :sweet_tea?,
44
+ :tasty_biscuits,
45
+ :tasty_biscuits!,
46
+ :tasty_biscuits?,
47
+ ].each do |yall|
48
+ define_singleton_method yall do
49
+ true
50
+ end
51
+ end
52
+
53
+ end
@@ -0,0 +1,3 @@
1
+ module TheSouth
2
+ VERSION = "0.0.1"
3
+ end
data/the_south.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 'the_south/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "the_south"
8
+ spec.version = TheSouth::VERSION
9
+ spec.authors = ["Andy Borsz"]
10
+ spec.email = ["andy.borsz@gmail.com"]
11
+ spec.description = "Everything you love about the South in Ruby gem form!"
12
+ spec.summary = "This charming yet useless gem injects Southern hospitality into any Ruby program."
13
+ spec.homepage = "https://github.com/biscuitvile/the_south"
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,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: the_south
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andy Borsz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-12-13 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: Everything you love about the South in Ruby gem form!
42
+ email:
43
+ - andy.borsz@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/the_south.rb
54
+ - lib/the_south/version.rb
55
+ - the_south.gemspec
56
+ homepage: https://github.com/biscuitvile/the_south
57
+ licenses:
58
+ - MIT
59
+ metadata: {}
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - '>='
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubyforge_project:
76
+ rubygems_version: 2.1.11
77
+ signing_key:
78
+ specification_version: 4
79
+ summary: This charming yet useless gem injects Southern hospitality into any Ruby
80
+ program.
81
+ test_files: []