foaas 0.0.2 → 0.0.3

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: 3e854705cc9fb427588c41a52da77dc6ade0885a
4
- data.tar.gz: 275e8f5b3869d170da5d352d9f29b8510f999224
3
+ metadata.gz: ddadf3c4cdf543790d6758a5cedd06ab8b3ec274
4
+ data.tar.gz: 729cacede3ccab75dbde47eef40db7297aa729f0
5
5
  SHA512:
6
- metadata.gz: e4f1a65f3fa72fe47c5401a6ad8bdae3fa6fc6eb83b98872da33f716269526236eb0f6135da93bf847687323893368688a90ff6231210e7987bd7be82bdf4274
7
- data.tar.gz: 37d44df32a3d13768942d9e62dd2307b09700b4ad4c46190a3cce905e58249f8b6f6a86f25461cdf8368ceda6a9850f752e0eaa5652f8d4709472b12e47843c6
6
+ metadata.gz: 2eba6dcb40fae006b85b690749506aba37c86ca9e661e7f2960191d1444ffec955be527dcc397a839a35308e13475385ae054936335768cf2c4488f30c5a3b6d
7
+ data.tar.gz: b0d3dd03fb981a266240bbe74ad2e9bf23b3a398ab50c39eb57abc579d9fe585d75af13c388c41fffa6f487a69612cb7e76343257af849ef28c054e7f00fcd5b
data/README.md CHANGED
@@ -23,25 +23,25 @@ Fuck::You.new(name: "You", from: "Me").execute!
23
23
  ## /this/:from
24
24
 
25
25
  ```ruby
26
- Fuck::This.new(name: "You", from: "Me").execute!
26
+ Fuck::This.new(from: "Me").execute!
27
27
  ```
28
28
 
29
29
  ## /that/:from
30
30
 
31
31
  ```ruby
32
- Fuck::That.new(name: "You", from: "Me").execute!
32
+ Fuck::That.new(from: "Me").execute!
33
33
  ```
34
34
 
35
35
  ## /everything/:from
36
36
 
37
37
  ```ruby
38
- Fuck::Everything.new(name: "You", from: "Me").execute!
38
+ Fuck::Everything.new(from: "Me").execute!
39
39
  ```
40
40
 
41
41
  ## /everyone/:from
42
42
 
43
43
  ```ruby
44
- Fuck::Everyone.new(name: "You", from: "Me").execute!
44
+ Fuck::Everyone.new(from: "Me").execute!
45
45
  ```
46
46
 
47
47
  ## /donut/:name/:from
@@ -71,13 +71,13 @@ Fuck::King.new(name: "You", from: "Me").execute!
71
71
  ## /pink/:from
72
72
 
73
73
  ```ruby
74
- Fuck::Pink.new(name: "You", from: "Me").execute!
74
+ Fuck::Pink.new(from: "Me").execute!
75
75
  ```
76
76
 
77
77
  ## /life/:from
78
78
 
79
79
  ```ruby
80
- Fuck::Life.new(name: "You", from: "Me").execute!
80
+ Fuck::Life.new(from: "Me").execute!
81
81
  ```
82
82
 
83
83
  ## /chainsaw/:name/:from
@@ -95,7 +95,7 @@ Fuck::Outside.new(name: "You", from: "Me").execute!
95
95
  ## /:thing/:from
96
96
 
97
97
  ```ruby
98
- Fuck::Thing.new(name: "You", from: "Me").execute!
98
+ Fuck::Thing.new(resource: "thing", from: "Me").execute!
99
99
  ```
100
100
 
101
101
  ## /thanks/:from
@@ -1,3 +1,3 @@
1
1
  module FOaaS
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Chainsaw < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Donut < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Everyone < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Everything < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class King < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Life < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Linus < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Off < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Pink < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Shakespeare < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Thanks < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class That < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class Thing < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class This < PayDirt::Base
5
3
  include Salutations
@@ -1,5 +1,3 @@
1
- require 'pay_dirt'
2
-
3
1
  module Fuck
4
2
  class You < PayDirt::Base
5
3
  include Salutations
@@ -4,8 +4,8 @@ describe Fuck::Chainsaw do
4
4
  before do
5
5
  @subject = Fuck::Chainsaw
6
6
  @params = {
7
- name: "Sweetheart",
8
- from: "Honey"
7
+ name: SecureRandom.hex,
8
+ from: SecureRandom.hex,
9
9
  }
10
10
  end
11
11
 
@@ -4,8 +4,8 @@ describe Fuck::Donut do
4
4
  before do
5
5
  @subject = Fuck::Donut
6
6
  @params = {
7
- name: "Sweetheart",
8
- from: "Honey"
7
+ name: SecureRandom.hex,
8
+ from: SecureRandom.hex,
9
9
  }
10
10
  end
11
11
 
@@ -4,7 +4,7 @@ describe Fuck::Everyone do
4
4
  before do
5
5
  @subject = Fuck::Everyone
6
6
  @params = {
7
- from: "Honey"
7
+ from: SecureRandom.hex,
8
8
  }
9
9
  end
10
10
 
@@ -4,7 +4,7 @@ describe Fuck::Everything do
4
4
  before do
5
5
  @subject = Fuck::Everything
6
6
  @params = {
7
- from: "Honey"
7
+ from: SecureRandom.hex,
8
8
  }
9
9
  end
10
10
 
@@ -4,8 +4,8 @@ describe Fuck::King do
4
4
  before do
5
5
  @subject = Fuck::King
6
6
  @params = {
7
- name: "Sweetheart",
8
- from: "Honey"
7
+ name: SecureRandom.hex,
8
+ from: SecureRandom.hex,
9
9
  }
10
10
  end
11
11
 
@@ -4,7 +4,7 @@ describe Fuck::Life do
4
4
  before do
5
5
  @subject = Fuck::Life
6
6
  @params = {
7
- from: "Honey"
7
+ from: SecureRandom.hex,
8
8
  }
9
9
  end
10
10
 
@@ -4,8 +4,8 @@ describe Fuck::Linus do
4
4
  before do
5
5
  @subject = Fuck::Linus
6
6
  @params = {
7
- name: "Sweetheart",
8
- from: "Honey"
7
+ name: SecureRandom.hex,
8
+ from: SecureRandom.hex,
9
9
  }
10
10
  end
11
11
 
@@ -4,8 +4,8 @@ describe Fuck::Off do
4
4
  before do
5
5
  @subject = Fuck::Off
6
6
  @params = {
7
- name: "Sweetheart",
8
- from: "Honey"
7
+ name: SecureRandom.hex,
8
+ from: SecureRandom.hex,
9
9
  }
10
10
  end
11
11
 
@@ -4,7 +4,7 @@ describe Fuck::Pink do
4
4
  before do
5
5
  @subject = Fuck::Pink
6
6
  @params = {
7
- from: "Honey"
7
+ from: SecureRandom.hex,
8
8
  }
9
9
  end
10
10
 
@@ -4,8 +4,8 @@ describe Fuck::Shakespeare do
4
4
  before do
5
5
  @subject = Fuck::Shakespeare
6
6
  @params = {
7
- name: "Sweetheart",
8
- from: "Honey"
7
+ name: SecureRandom.hex,
8
+ from: SecureRandom.hex,
9
9
  }
10
10
  end
11
11
 
@@ -4,7 +4,7 @@ describe Fuck::Thanks do
4
4
  before do
5
5
  @subject = Fuck::Thanks
6
6
  @params = {
7
- from: "Honey"
7
+ from: SecureRandom.hex,
8
8
  }
9
9
  end
10
10
 
@@ -4,7 +4,7 @@ describe Fuck::That do
4
4
  before do
5
5
  @subject = Fuck::That
6
6
  @params = {
7
- from: "Honey"
7
+ from: SecureRandom.hex,
8
8
  }
9
9
  end
10
10
 
@@ -4,7 +4,8 @@ describe Fuck::Thing do
4
4
  before do
5
5
  @subject = Fuck::Thing
6
6
  @params = {
7
- from: "Honey"
7
+ from: SecureRandom.hex,
8
+ resource: "Something"
8
9
  }
9
10
  end
10
11
 
@@ -4,7 +4,7 @@ describe Fuck::This do
4
4
  before do
5
5
  @subject = Fuck::This
6
6
  @params = {
7
- from: "Honey"
7
+ from: SecureRandom.hex,
8
8
  }
9
9
  end
10
10
 
@@ -4,8 +4,8 @@ describe Fuck::You do
4
4
  before do
5
5
  @subject = Fuck::You
6
6
  @params = {
7
- name: "Sweetheart",
8
- from: "Honey"
7
+ name: SecureRandom.hex,
8
+ from: SecureRandom.hex,
9
9
  }
10
10
  end
11
11
 
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.0.2
4
+ version: 0.0.3
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-21 00:00:00.000000000 Z
11
+ date: 2013-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pay_dirt