wp_wrapper 0.0.4 → 0.0.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9b9e21959217ff182e62ebba47888d528feea4af
4
- data.tar.gz: f397526568234c292637a38f62d0df031f19db34
3
+ metadata.gz: 858f744a53e8e3ebd14527c1a7124e016ba6fc17
4
+ data.tar.gz: fa66f22243190ae96dbb0c2e55b5dbae21928741
5
5
  SHA512:
6
- metadata.gz: 23de8f530654fa563368dbdc12765c1fdab9bd62b44f206aeada12ecc483db98932a771a4714402ccef732d6a858189f76ddea0933edcab8b9d18b539c6f9c3f
7
- data.tar.gz: a6ac0a6480b5f272b8162a527a43e6c638048f42649605d35b2a4de4cee4730eb61bc7961e4f19b952d98c3459061ea03c02bae5b79b1c1cdd92f584c3d96075
6
+ metadata.gz: 267c0915a66ce598ebe617a4a942210f30af6a9588041be2a8feaa9be2780831586ef7d5fa1b050d768d2e0ab94445fad2a7604fa0edc6820821861d4f5393fb
7
+ data.tar.gz: 622ce493debf0a3cdf956ef65f8e3ee8510134f70dca56665719d6b0aba4f2dd1eb15c3791bef971a7c7e082a9d5d702582a765fcd9423aa61761e49e6e110fc
@@ -0,0 +1,3 @@
1
+ module WpWrapper
2
+ class FailedLoginException < StandardError; end
3
+ end
data/lib/wp_wrapper.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module WpWrapper
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
 
4
4
  require File.join(File.dirname(__FILE__), 'wp_wrapper/railtie') if defined?(Rails)
5
5
 
data/wp_wrapper.gemspec CHANGED
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
3
3
  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5") if s.respond_to? :required_rubygems_version=
4
4
 
5
5
  s.name = 'wp_wrapper'
6
- s.version = '0.0.4'
6
+ s.version = '0.0.5'
7
7
 
8
8
  s.homepage = "http://github.com/Agiley/wp_wrapper"
9
9
  s.email = "sebastian@agiley.se"
@@ -26,6 +26,7 @@ Gem::Specification.new do |s|
26
26
  Rakefile
27
27
  lib/wp_wrapper.rb
28
28
  lib/wp_wrapper/client.rb
29
+ lib/wp_wrapper/exceptions.rb
29
30
  lib/wp_wrapper/modules/api.rb
30
31
  lib/wp_wrapper/modules/authorization.rb
31
32
  lib/wp_wrapper/modules/options.rb
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wp_wrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Johnsson
@@ -92,6 +92,7 @@ files:
92
92
  - Rakefile
93
93
  - lib/wp_wrapper.rb
94
94
  - lib/wp_wrapper/client.rb
95
+ - lib/wp_wrapper/exceptions.rb
95
96
  - lib/wp_wrapper/modules/api.rb
96
97
  - lib/wp_wrapper/modules/authorization.rb
97
98
  - lib/wp_wrapper/modules/options.rb