foaas 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ba8463279aabbe667e77fcbb72e3a8c2a10a207
4
- data.tar.gz: ad4492b3300f7f744faee8c43cf171bf5377e925
3
+ metadata.gz: 5d41ac67289111ca047f286918c6f6491d1c3184
4
+ data.tar.gz: 609c52179efa52675a5088245e1a809459d5d4c8
5
5
  SHA512:
6
- metadata.gz: 4210ec96ef0f6ba4ba91b7c44935cbe077c4e3ae1f4d24f39bde754216405e77cf8211b04b12fffe02f7fc372661ba4451389cb6bcc09fc9b83697e9da69dbb6
7
- data.tar.gz: ae1e89fb91590d044e2efdf272e478a6e8e0043329e85411bdddf58ef7db573a1cce6205256f5da43f87e8b7cc412eccd43ea7774131cfbf382ec7503a730c37
6
+ metadata.gz: 5336344a71963652ca6834d704f71b4254e6204d7a9300b368a31c5f0962e4337380244d69f53a75d90296e6034db3be15828399384d1627a1307daead4a31b3
7
+ data.tar.gz: 5aa407387327d217016496f4a4905ea7c20728b41254dd9f2c17ee94d38a30c73076171a14b83838aa28f18e3563fd888fd4070401899187b1ac87bf03b983ec
data/README.md CHANGED
@@ -86,22 +86,30 @@ Fuck::Life.new(from: "Me").call
86
86
  Fuck::Chainsaw.new(name: "You", from: "Me").call
87
87
  ```
88
88
 
89
- ## /outside/:name/:from
89
+ ## /:thing/:from
90
90
 
91
91
  ```ruby
92
- Fuck::Outside.new(name: "You", from: "Me").call
92
+ Fuck::Thing.new(thing: "Anything", from: "Me").call
93
93
  ```
94
94
 
95
- ## /:thing/:from
95
+ ## /thanks/:from
96
96
 
97
97
  ```ruby
98
- Fuck::Thing.new(resource: "thing", from: "Me").call
98
+ Fuck::Thanks.new(from: "Me").call
99
99
  ```
100
100
 
101
- ## /thanks/:from
101
+ # TODO
102
102
 
103
+ ## /outside/:name/:from
104
+
105
+ Intended:
103
106
  ```ruby
104
- Fuck::Thanks.new(from: "Me").call
107
+ Fuck::Outside.new(name: "You", from: "Me").call
108
+ ```
109
+
110
+ Current:
111
+ ```ruby
112
+ FOaaS::FO.new(resource: "outside", name: "You", from: "Me").call
105
113
  ```
106
114
 
107
115
  # Contributing
@@ -1,3 +1,3 @@
1
1
  module FOaaS
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -7,6 +7,10 @@ module Fuck
7
7
  # @option options [String] :from
8
8
  # @example
9
9
  # Fuck::Chainsaw.new(name: "You", from: "Me").call
10
+ # => #<PayDirt::Result:0x92734f0 @data={
11
+ # "message"=> "Fuck me gently with a chainsaw, You. Do I look like Mother Teresa?",
12
+ # "subtitle"=>"- Me"
13
+ # }, @success=true>
10
14
  def initialize(options = {})
11
15
  options = {
12
16
  resource: "chainsaw",
@@ -7,6 +7,10 @@ module Fuck
7
7
  # @option options [String] :from
8
8
  # @example
9
9
  # Fuck::Donut.new(name: "You", from: "Me").call
10
+ # => #<PayDirt::Result:0x90f6870 @data= {
11
+ # "message"=>"You, go and take a flying fuck at a rolling donut.",
12
+ # "subtitle"=>"- Me"
13
+ # }, @success=true>
10
14
  def initialize(options = {})
11
15
  options = {
12
16
  resource: "donut",
@@ -6,6 +6,10 @@ module Fuck
6
6
  # @option options [String] :from
7
7
  # @example
8
8
  # Fuck::Everyone.new(from: "Me").call
9
+ # => #<PayDirt::Result:0x90b53fc @data= {
10
+ # "message"=>"Everyone can go and fuck off.",
11
+ # "subtitle"=>"- Me"
12
+ # }, @success=true>
9
13
  def initialize(options = {})
10
14
  options = {
11
15
  resource: "everyone",
@@ -6,6 +6,10 @@ module Fuck
6
6
  # @option options [String] :from
7
7
  # @example
8
8
  # Fuck::Everything.new(from: "Me").call
9
+ # => #<PayDirt::Result:0x908b32c @data= {
10
+ # "message"=>"Fuck everything.",
11
+ # "subtitle"=>"- Me"
12
+ # }, @success=true>
9
13
  def initialize(options = {})
10
14
  options = {
11
15
  resource: "everything",
@@ -7,6 +7,10 @@ module Fuck
7
7
  # @option options [String] :from
8
8
  # @example
9
9
  # Fuck::King.new(name: "You", from: "Me").call
10
+ # => #<PayDirt::Result:0x91adffc @data= {
11
+ # "message"=> "Oh fuck off, just really fuck off you total dickface. Christ You, you are fucking thick.",
12
+ # "subtitle"=>"- Me"
13
+ # }, @success=true>
10
14
  def initialize(options = {})
11
15
  options = {
12
16
  resource: "king",
@@ -6,6 +6,10 @@ module Fuck
6
6
  # @option options [String] :from
7
7
  # @example
8
8
  # Fuck::Life.new(from: "Me").call
9
+ # => #<PayDirt::Result:0x922e058 @data= {
10
+ # "message"=>"Fuck my life.",
11
+ # "subtitle"=>"- Me"
12
+ # }, @success=true>
9
13
  def initialize(options = {})
10
14
  options = {
11
15
  resource: "life",
@@ -7,6 +7,12 @@ module Fuck
7
7
  # @option options [String] :from
8
8
  # @example
9
9
  # Fuck::Linus.new(name: "You", from: "Me").call
10
+ # => #<PayDirt::Result:0x916ccc8 @data= {
11
+ # "message"=> "You, there aren't enough swear-words in the English language,
12
+ # so now I'll have to call you perkeleen vittupää just to
13
+ # express my disgust and frustration with this crap.",
14
+ # "subtitle"=>"- Me"
15
+ # }, @success=true>
10
16
  def initialize(options = {})
11
17
  options = {
12
18
  resource: "linus",
@@ -7,6 +7,10 @@ module Fuck
7
7
  # @option options [String] :from
8
8
  # @example
9
9
  # Fuck::Off.new(name: "You", from: "Me").call
10
+ # => #<PayDirt::Result:0x8a544f4 @data= {
11
+ # "message"=>"Fuck off, You.",
12
+ # "subtitle"=>"- Me"
13
+ # }, @success=true>
10
14
  def initialize(options = {})
11
15
  options = {
12
16
  resource: "off",
@@ -6,6 +6,10 @@ module Fuck
6
6
  # @option options [String] :from
7
7
  # @example
8
8
  # Fuck::Pink.new(from: "Me").call
9
+ # => #<PayDirt::Result:0x91fbf7c @data= {
10
+ # "message"=>"Well, Fuck me pink.",
11
+ # "subtitle"=>"- Me"
12
+ # }, # @success=true>
9
13
  def initialize(options = {})
10
14
  options = {
11
15
  resource: "pink",
@@ -7,6 +7,11 @@ module Fuck
7
7
  # @option options [String] :from
8
8
  # @example
9
9
  # Fuck::Shakespeare.new(name: "You", from: "Me").call
10
+ # => #<PayDirt::Result:0x913fc3c @data= {
11
+ # "message"=> "You, Thou clay-brained guts, thou knotty-pated fool,
12
+ # thou whoreson obscene greasy tallow-catch!",
13
+ # "subtitle"=>"- Me"
14
+ # }, # @success=true>
10
15
  def initialize(options = {})
11
16
  options = {
12
17
  resource: "shakespeare",
@@ -6,6 +6,10 @@ module Fuck
6
6
  # @option options [String] :from
7
7
  # @example
8
8
  # Fuck::Thanks.new(from: "Me").call
9
+ # => #<PayDirt::Result:0x9309414 @data= {
10
+ # "message"=>"Fuck you very much.",
11
+ # "subtitle"=>"- Me"
12
+ # }, @success=true>
9
13
  def initialize(options = {})
10
14
  options = {
11
15
  resource: "thanks",
@@ -6,6 +6,10 @@ module Fuck
6
6
  # @option options [String] :from
7
7
  # @example
8
8
  # Fuck::That.new(from: "Me").call
9
+ # => #<PayDirt::Result:0x8ba0858 @data={
10
+ # "message"=>"Fuck that.",
11
+ # "subtitle"=>"- Me"
12
+ # }, @success=true>
9
13
  def initialize(options = {})
10
14
  options = {
11
15
  resource: "that",
@@ -7,6 +7,10 @@ module Fuck
7
7
  # @option options [String] :from
8
8
  # @example
9
9
  # Fuck::Thing.new(thing: "Cassowaries", from: "Me").call
10
+ # => #<PayDirt::Result:0x92db334 @data= {
11
+ # "message"=>"Fuck Anything.",
12
+ # "subtitle"=>"- Me"
13
+ # }, @success=true>
10
14
  def initialize(options = {})
11
15
  options = {
12
16
  resource: options[:thing],
@@ -6,6 +6,10 @@ module Fuck
6
6
  # @option options [String] :from
7
7
  # @example
8
8
  # Fuck::This.new(from: "Me").call
9
+ # => #<PayDirt::Result:0x8b2d650 @data= {
10
+ # "message"=>"Fuck this.",
11
+ # "subtitle"=>"- Me"
12
+ # }, @success=true>
9
13
  def initialize(options = {})
10
14
  options = {
11
15
  resource: "this",
@@ -7,6 +7,10 @@ module Fuck
7
7
  # @option options [String] :from
8
8
  # @example
9
9
  # Fuck::You.new(name: "You", from: "Me").call
10
+ # => #<PayDirt::Result:0x8aa2dfc @data= {
11
+ # "message"=>"Fuck you, You.",
12
+ # "subtitle"=>"- Me"
13
+ # }, @success=true>
10
14
  def initialize(options = {})
11
15
  options = {
12
16
  resource: "you",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foaas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan T. Hosford
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-24 00:00:00.000000000 Z
11
+ date: 2013-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pay_dirt