Skip to content

Commit

Permalink
Bumps version for 0.1.0 release
Browse files Browse the repository at this point in the history
  - Minor version release due to a change in the API for
    Fuck::Thing
  - Fuck::Thing#initialize will now fail to initialize if :thing is not supplied in
    the options hash.
  • Loading branch information
rthbound committed Jul 24, 2013
1 parent 64d2ddd commit e68552a
Show file tree
Hide file tree
Showing 18 changed files with 82 additions and 15 deletions.
9 changes: 4 additions & 5 deletions foaas.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
spec.version = FOaaS::VERSION
spec.authors = ["Ryan T. Hosford"]
spec.email = ["tad.hosford@gmail.com"]
spec.description = %q{ Ruby interface to FOASS (http://foass.com)}
spec.summary = %q{ Fun stuff }
spec.homepage = ""
spec.description = %q{ Ruby interface to FOaaS - http://foaas.com }
spec.summary = %q{ Fun stuff. }
spec.homepage = "http://github.com/rthbound/foaas"
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
Expand All @@ -21,9 +21,8 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "pay_dirt", "~> 1.0.7"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "pry"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "coveralls"
#spec.add_development_dependency "simplecov"
spec.add_development_dependency "minitest"

spec.add_development_dependency "rake"
end
18 changes: 9 additions & 9 deletions lib/foaas.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
require 'open-uri'
require 'json'


require_relative 'foaas/version'
require_relative 'foaas/f_o'

require_relative 'salutations'
require_relative 'fuck/thanks'
require_relative 'fuck/thing'
require_relative 'fuck/chainsaw'
require_relative 'fuck/life'
require_relative 'fuck/pink'
require_relative 'fuck/king'
require_relative 'fuck/linus'
require_relative 'fuck/shakespeare'
require_relative 'fuck/donut'
require_relative 'fuck/everyone'
require_relative 'fuck/everything'
require_relative 'fuck/king'
require_relative 'fuck/life'
require_relative 'fuck/linus'
require_relative 'fuck/off'
require_relative 'fuck/pink'
require_relative 'fuck/shakespeare'
require_relative 'fuck/thanks'
require_relative 'fuck/that'
require_relative 'fuck/thing'
require_relative 'fuck/this'
require_relative 'fuck/you'
require_relative 'fuck/off'

2 changes: 1 addition & 1 deletion lib/foaas/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module FOaaS
VERSION = "0.0.3"
VERSION = "0.1.0"
end
5 changes: 5 additions & 0 deletions lib/fuck/chainsaw.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module Fuck
class Chainsaw
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :name
# @option options [String] :from
# @example
# Fuck::Chainsaw.new(name: "You", from: "Me").call
def initialize(options = {})
options = {
resource: "chainsaw",
Expand Down
5 changes: 5 additions & 0 deletions lib/fuck/donut.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module Fuck
class Donut
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :name
# @option options [String] :from
# @example
# Fuck::Donut.new(name: "You", from: "Me").call
def initialize(options = {})
options = {
resource: "donut",
Expand Down
4 changes: 4 additions & 0 deletions lib/fuck/everyone.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module Fuck
class Everyone
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :from
# @example
# Fuck::Everyone.new(from: "Me").call
def initialize(options = {})
options = {
resource: "everyone",
Expand Down
4 changes: 4 additions & 0 deletions lib/fuck/everything.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module Fuck
class Everything
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :from
# @example
# Fuck::Everything.new(from: "Me").call
def initialize(options = {})
options = {
resource: "everything",
Expand Down
5 changes: 5 additions & 0 deletions lib/fuck/king.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module Fuck
class King
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :name
# @option options [String] :from
# @example
# Fuck::King.new(name: "You", from: "Me").call
def initialize(options = {})
options = {
resource: "king",
Expand Down
4 changes: 4 additions & 0 deletions lib/fuck/life.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module Fuck
class Life
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :from
# @example
# Fuck::Life.new(from: "Me").call
def initialize(options = {})
options = {
resource: "life",
Expand Down
5 changes: 5 additions & 0 deletions lib/fuck/linus.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module Fuck
class Linus
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :name
# @option options [String] :from
# @example
# Fuck::Linus.new(name: "You", from: "Me").call
def initialize(options = {})
options = {
resource: "linus",
Expand Down
5 changes: 5 additions & 0 deletions lib/fuck/off.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module Fuck
class Off
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :name
# @option options [String] :from
# @example
# Fuck::Off.new(name: "You", from: "Me").call
def initialize(options = {})
options = {
resource: "off",
Expand Down
4 changes: 4 additions & 0 deletions lib/fuck/pink.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module Fuck
class Pink
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :from
# @example
# Fuck::Pink.new(from: "Me").call
def initialize(options = {})
options = {
resource: "pink",
Expand Down
5 changes: 5 additions & 0 deletions lib/fuck/shakespeare.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module Fuck
class Shakespeare
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :name
# @option options [String] :from
# @example
# Fuck::Shakespeare.new(name: "You", from: "Me").call
def initialize(options = {})
options = {
resource: "shakespeare",
Expand Down
4 changes: 4 additions & 0 deletions lib/fuck/thanks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module Fuck
class Thanks
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :from
# @example
# Fuck::Thanks.new(from: "Me").call
def initialize(options = {})
options = {
resource: "thanks",
Expand Down
4 changes: 4 additions & 0 deletions lib/fuck/that.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module Fuck
class That
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :from
# @example
# Fuck::That.new(from: "Me").call
def initialize(options = {})
options = {
resource: "that",
Expand Down
5 changes: 5 additions & 0 deletions lib/fuck/thing.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module Fuck
class Thing
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :thing
# @option options [String] :from
# @example
# Fuck::Thing.new(thing: "Cassowaries", from: "Me").call
def initialize(options = {})
options = {
resource: options[:thing],
Expand Down
4 changes: 4 additions & 0 deletions lib/fuck/this.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module Fuck
class This
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :from
# @example
# Fuck::This.new(from: "Me").call
def initialize(options = {})
options = {
resource: "this",
Expand Down
5 changes: 5 additions & 0 deletions lib/fuck/you.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ module Fuck
class You
include Salutations

# @param [Hash] options options to send FOaaS
# @option options [String] :name
# @option options [String] :from
# @example
# Fuck::You.new(name: "You", from: "Me").call
def initialize(options = {})
options = {
resource: "you",
Expand Down

0 comments on commit e68552a

Please sign in to comment.