flickrmocks 0.8.5 → 0.8.6
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/VERSION +1 -1
- data/flickrmocks.gemspec +2 -2
- data/lib/flickrmocks.rb +33 -7
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.6
|
data/flickrmocks.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{flickrmocks}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Takaltoo"]
|
|
12
|
-
s.date = %q{2010-11-
|
|
12
|
+
s.date = %q{2010-11-09}
|
|
13
13
|
s.description = %q{FlickrMocks makes it possible to Marshal responses
|
|
14
14
|
generated from the FLickRaw gem. This is useful for
|
|
15
15
|
Mocking/Stubbing the Flickr interface for testing purposes.
|
data/lib/flickrmocks.rb
CHANGED
|
@@ -16,12 +16,38 @@ end
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
flickrmocks_path = File.expand_path('../flickr_mocks/', __FILE__)
|
|
19
|
+
# flickrmocks_path = File.expand_path('../flickr_mocks/', __FILE__)
|
|
20
|
+
#
|
|
21
|
+
#
|
|
22
|
+
## include all ruby files in the library path
|
|
23
|
+
# Find.find(flickrmocks_path) do |file|
|
|
24
|
+
# if File.file?(file)
|
|
25
|
+
# require file if File.extname(file) == '.rb'
|
|
26
|
+
# end
|
|
27
|
+
# end
|
|
20
28
|
|
|
29
|
+
require 'flickr_mocks/version.rb'
|
|
30
|
+
require 'flickr_mocks/stubs.rb'
|
|
31
|
+
require 'flickr_mocks/helpers.rb'
|
|
32
|
+
require 'flickr_mocks/fixtures.rb'
|
|
33
|
+
|
|
34
|
+
require 'flickr_mocks/models/helpers.rb'
|
|
35
|
+
require 'flickr_mocks/models/photo_sizes.rb'
|
|
36
|
+
require 'flickr_mocks/models/photo_dimensions.rb'
|
|
37
|
+
require 'flickr_mocks/models/photo_size.rb'
|
|
38
|
+
require 'flickr_mocks/models/photos.rb'
|
|
39
|
+
require 'flickr_mocks/models/photo.rb'
|
|
40
|
+
require 'flickr_mocks/models/photo_search.rb'
|
|
41
|
+
require 'flickr_mocks/models/photo_details.rb'
|
|
42
|
+
|
|
43
|
+
require 'flickr_mocks/api/helpers.rb'
|
|
44
|
+
require 'flickr_mocks/api/options.rb'
|
|
45
|
+
require 'flickr_mocks/api/flickr.rb'
|
|
46
|
+
require 'flickr_mocks/api/sanitize.rb'
|
|
47
|
+
require 'flickr_mocks/api/api.rb'
|
|
48
|
+
|
|
49
|
+
require 'flickr_mocks/flickraw/custom_clone.rb'
|
|
50
|
+
require 'flickr_mocks/flickraw/custom_compare.rb'
|
|
51
|
+
require 'flickr_mocks/flickraw/custom_marshal.rb'
|
|
52
|
+
require 'flickr_mocks/flickraw/flickraw.rb'
|
|
21
53
|
|
|
22
|
-
# include all ruby files in the library path
|
|
23
|
-
Find.find(flickrmocks_path) do |file|
|
|
24
|
-
if File.file?(file)
|
|
25
|
-
require file if File.extname(file) == '.rb'
|
|
26
|
-
end
|
|
27
|
-
end
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 8
|
|
8
|
-
-
|
|
9
|
-
version: 0.8.
|
|
8
|
+
- 6
|
|
9
|
+
version: 0.8.6
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Takaltoo
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-11-
|
|
17
|
+
date: 2010-11-09 00:00:00 -08:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|