flickrmocks 0.9.1 → 0.9.2

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/.gitignore CHANGED
@@ -5,6 +5,9 @@
5
5
  *.tmproj
6
6
  tmtags
7
7
 
8
+ ## Redcar
9
+ .redcar
10
+
8
11
  ## EMACS
9
12
  *~
10
13
  \#*
@@ -10,7 +10,7 @@ In a standalone ruby project:
10
10
  gem install flickrmocks
11
11
 
12
12
  # in your code
13
- require 'flickrmocks
13
+ require 'flickrmocks'
14
14
 
15
15
  In <b>Rails 3</b>, add this to your Gemfile.
16
16
 
@@ -101,28 +101,28 @@ refer RDocs[http://rdoc.info/projects/takaltoo/flickrmocks].
101
101
 
102
102
  * {RDOCs}[http://rdoc.info/projects/takaltoo/flickrmocks]
103
103
  * {See more}[http://wiki.github.com/takaltoo/flickrmocks/]
104
- * Run the specs manually once you've checked out the repository:
104
+ * Run the specs manually once you have checked out the repository:
105
105
  rspec spec -f d
106
106
 
107
107
 
108
108
  == Questions or Problems?
109
109
 
110
110
  If you have any issues with FlickrMocks which you cannot find the solution to in the documentation,
111
- please add an {issue on GitHub}[http://github.com/takaltoo/flickrmocks/issues] or fork the project and send a pull request.
111
+ please add an issue on GitHub[http://github.com/takaltoo/flickrmocks/issues] or fork the project
112
+ and send a pull request.
112
113
 
113
114
  To get the specs running you should call +bundle+ and then +rake+.
114
115
 
115
-
116
116
  == Note on Patches/Pull Requests
117
117
 
118
118
  * Fork the project.
119
119
  * Make your feature addition or bug fix.
120
- * Add tests for it. This is important so I don't break it in a
121
- future version unintentionally.
120
+ * Add tests for it. This is important so I do not break it
121
+ in a future version unintentionally.
122
122
  * Commit, do not mess with rakefile, version, or history.
123
- (if you want to have your own version, that is fine but bump version in a commit
124
- by itself I can ignore when I pull)
125
- * Send me a pull request. Bonus points for topic branches.
123
+ (if you want to have your own version, that is fine but bump version in a commit by itself
124
+ I can ignore when I pull)
125
+ * Send me a pull request.
126
126
 
127
127
  == License
128
128
 
@@ -12,12 +12,11 @@ Gem::Specification.new do |s|
12
12
  s.authors = ["Takaltoo"]
13
13
  s.email = ["pouya@lavabit.com"]
14
14
  s.homepage = "http://rubygems.org/gems/flickrmocks"
15
- s.summary = %q{Sample gem to see if can do a bundle based gem}
16
- s.description = %q{FlickrMocks makes it possible to Marshal responses
17
- generated from the FLickRaw gem. This is useful for
18
- Mocking/Stubbing the Flickr interface for testing purposes.
19
- The FlickRaw::Response and FlickRaw::ResponseList objects can
20
- not be Marshaled because they contain singleton's.}
15
+ s.summary = %q{Provides Classes and Helper functions that simplify
16
+ the development of an interface to Flickr using the FlickRaw GEM.}
17
+ s.description = %q{
18
+ FlickrMocks provides: 1) high level search API to access the Flickr API. Flickr responses are
19
+ wrapped in classes that provide a host of additional functionality.}
21
20
  s.extra_rdoc_files = ["README.rdoc"]
22
21
  s.rdoc_options = ["--charset=UTF-8"]
23
22
  s.rubyforge_project = "flickrmocks"
@@ -1,7 +1,7 @@
1
1
 
2
2
  module FlickrMocks
3
3
  # version for FlickrMocks gem
4
- VERSION = '0.9.1'
4
+ VERSION = '0.9.2'
5
5
 
6
6
  # returns the version for FlickrMocks gem
7
7
  def self.version
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 1
9
- version: 0.9.1
8
+ - 2
9
+ version: 0.9.2
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-12-27 00:00:00 -08:00
17
+ date: 2011-01-14 00:00:00 -08:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -134,12 +134,7 @@ dependencies:
134
134
  version: 0.8.2
135
135
  type: :development
136
136
  version_requirements: *id008
137
- description: |-
138
- FlickrMocks makes it possible to Marshal responses
139
- generated from the FLickRaw gem. This is useful for
140
- Mocking/Stubbing the Flickr interface for testing purposes.
141
- The FlickRaw::Response and FlickRaw::ResponseList objects can
142
- not be Marshaled because they contain singleton's.
137
+ description: "\n FlickrMocks provides: 1) high level search API to access the Flickr API. Flickr responses are\n wrapped in classes that provide a host of additional functionality."
143
138
  email:
144
139
  - pouya@lavabit.com
145
140
  executables: []
@@ -261,6 +256,6 @@ rubyforge_project: flickrmocks
261
256
  rubygems_version: 1.3.7
262
257
  signing_key:
263
258
  specification_version: 3
264
- summary: Sample gem to see if can do a bundle based gem
259
+ summary: Provides Classes and Helper functions that simplify the development of an interface to Flickr using the FlickRaw GEM.
265
260
  test_files: []
266
261