ducksauce 0.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.
data/LICENSE.txt ADDED
@@ -0,0 +1,23 @@
1
+ Copyright (c) 2012 Josh Ballanco
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification,
5
+ are permitted provided that the following conditions are met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ * Redistributions in binary form must reproduce the above copyright notice, this
11
+ list of conditions and the following disclaimer in the documentation and/or
12
+ other materials provided with the distribution.
13
+
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
18
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
21
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/NEWS.md ADDED
@@ -0,0 +1,3 @@
1
+ ## v0.0.0 (2012-11-27)
2
+
3
+ * Happy Birthday!
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Ducksauce
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'ducksauce'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install ducksauce
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/ducksauce.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ducksauce/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = 'ducksauce'
8
+ gem.version = DuckSauce::VERSION
9
+ gem.authors = ['Josh Ballanco']
10
+ gem.email = ['jballanc@gmail.com']
11
+ gem.description = 'DuckSauce handles duck type boilerplate so you don\'t have to.'
12
+ gem.summary = <<-EOS.lines.map(&:lstrip).join
13
+ DuckSauce is a gem that takes the hard work out of doing
14
+ duck typing in Ruby. It allows you to both quickly
15
+ define generic type coercion helper methods and use
16
+ those methods to coerce method arguments before the body
17
+ of your methods.
18
+ EOS
19
+ gem.homepage = 'https://github.com/jballanc/ducksauce'
20
+
21
+ gem.files = Dir['{lib,test}/**/*.rb'] + %w|README.md NEWS.md LICENSE.txt ducksauce.gemspec|
22
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
23
+ gem.require_paths = ['lib']
24
+ end
data/lib/ducksauce.rb ADDED
@@ -0,0 +1,10 @@
1
+ # Copyright (c) 2012, Joshua Ballanco.
2
+ # All rights reserved.
3
+ #
4
+ # This file is covered by the BSD 2-Clause License.
5
+ # See COPYING for more details.
6
+
7
+ require 'ducksauce/version'
8
+
9
+ module DuckSauce
10
+ end
@@ -0,0 +1,9 @@
1
+ # Copyright (c) 2012, Joshua Ballanco.
2
+ # All rights reserved.
3
+ #
4
+ # This file is covered by the BSD 2-Clause License.
5
+ # See COPYING for more details.
6
+
7
+ module DuckSauce
8
+ VERSION = "0.0.0"
9
+ end
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ducksauce
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Josh Ballanco
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-11-27 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: DuckSauce handles duck type boilerplate so you don't have to.
15
+ email:
16
+ - jballanc@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - lib/ducksauce/version.rb
22
+ - lib/ducksauce.rb
23
+ - README.md
24
+ - NEWS.md
25
+ - LICENSE.txt
26
+ - ducksauce.gemspec
27
+ homepage: https://github.com/jballanc/ducksauce
28
+ licenses: []
29
+ post_install_message:
30
+ rdoc_options: []
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: '0'
45
+ requirements: []
46
+ rubyforge_project:
47
+ rubygems_version: 1.8.23
48
+ signing_key:
49
+ specification_version: 3
50
+ summary: DuckSauce is a gem that takes the hard work out of doing duck typing in Ruby.
51
+ It allows you to both quickly define generic type coercion helper methods and use
52
+ those methods to coerce method arguments before the body of your methods.
53
+ test_files: []