weeblycloud 1.0.0
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 +7 -0
- data/.gitignore +11 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.md +10 -0
- data/README.md +249 -0
- data/Rakefile +10 -0
- data/bin/setup +8 -0
- data/lib/weeblycloud.rb +22 -0
- data/lib/weeblycloud/account.rb +51 -0
- data/lib/weeblycloud/blog.rb +52 -0
- data/lib/weeblycloud/blogpost.rb +28 -0
- data/lib/weeblycloud/cloudclient/cloudclient.rb +119 -0
- data/lib/weeblycloud/cloudclient/exceptions.rb +17 -0
- data/lib/weeblycloud/cloudclient/weeblycloudresponse.rb +141 -0
- data/lib/weeblycloud/cloudresource.rb +62 -0
- data/lib/weeblycloud/deleteable.rb +13 -0
- data/lib/weeblycloud/form.rb +39 -0
- data/lib/weeblycloud/formentry.rb +26 -0
- data/lib/weeblycloud/group.rb +30 -0
- data/lib/weeblycloud/member.rb +30 -0
- data/lib/weeblycloud/page.rb +38 -0
- data/lib/weeblycloud/plan.rb +27 -0
- data/lib/weeblycloud/saveable.rb +36 -0
- data/lib/weeblycloud/site.rb +194 -0
- data/lib/weeblycloud/theme.rb +26 -0
- data/lib/weeblycloud/user.rb +71 -0
- data/lib/weeblycloud/version.rb +3 -0
- data/weeblycloud.gemspec +33 -0
- metadata +128 -0
data/weeblycloud.gemspec
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "weeblycloud/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "weeblycloud"
|
8
|
+
spec.version = Weeblycloud::VERSION
|
9
|
+
spec.authors = ["Daniel Nussbaum"]
|
10
|
+
spec.email = ["daniel.e.nussbaum@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{A client library for the Weebly Cloud API}
|
13
|
+
spec.description = %q{A client library for the Weebly Cloud API}
|
14
|
+
spec.homepage = "https://github.com/Weebly/cloud-client-ruby"
|
15
|
+
spec.license = 'Weebly'
|
16
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
17
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host
|
18
|
+
# if spec.respond_to?(:metadata)
|
19
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
20
|
+
# else
|
21
|
+
# raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
22
|
+
# end
|
23
|
+
|
24
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
|
+
spec.bindir = "exe"
|
26
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
27
|
+
spec.require_paths = ["lib"]
|
28
|
+
|
29
|
+
spec.add_dependency "http"
|
30
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
31
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
32
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
33
|
+
end
|
metadata
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: weeblycloud
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Daniel Nussbaum
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-08-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: http
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.12'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.12'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '5.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '5.0'
|
69
|
+
description: A client library for the Weebly Cloud API
|
70
|
+
email:
|
71
|
+
- daniel.e.nussbaum@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- .gitignore
|
77
|
+
- .travis.yml
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE.md
|
80
|
+
- README.md
|
81
|
+
- Rakefile
|
82
|
+
- bin/setup
|
83
|
+
- lib/weeblycloud.rb
|
84
|
+
- lib/weeblycloud/account.rb
|
85
|
+
- lib/weeblycloud/blog.rb
|
86
|
+
- lib/weeblycloud/blogpost.rb
|
87
|
+
- lib/weeblycloud/cloudclient/cloudclient.rb
|
88
|
+
- lib/weeblycloud/cloudclient/exceptions.rb
|
89
|
+
- lib/weeblycloud/cloudclient/weeblycloudresponse.rb
|
90
|
+
- lib/weeblycloud/cloudresource.rb
|
91
|
+
- lib/weeblycloud/deleteable.rb
|
92
|
+
- lib/weeblycloud/form.rb
|
93
|
+
- lib/weeblycloud/formentry.rb
|
94
|
+
- lib/weeblycloud/group.rb
|
95
|
+
- lib/weeblycloud/member.rb
|
96
|
+
- lib/weeblycloud/page.rb
|
97
|
+
- lib/weeblycloud/plan.rb
|
98
|
+
- lib/weeblycloud/saveable.rb
|
99
|
+
- lib/weeblycloud/site.rb
|
100
|
+
- lib/weeblycloud/theme.rb
|
101
|
+
- lib/weeblycloud/user.rb
|
102
|
+
- lib/weeblycloud/version.rb
|
103
|
+
- weeblycloud.gemspec
|
104
|
+
homepage: https://github.com/Weebly/cloud-client-ruby
|
105
|
+
licenses:
|
106
|
+
- Weebly
|
107
|
+
metadata: {}
|
108
|
+
post_install_message:
|
109
|
+
rdoc_options: []
|
110
|
+
require_paths:
|
111
|
+
- lib
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - '>='
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - '>='
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
requirements: []
|
123
|
+
rubyforge_project:
|
124
|
+
rubygems_version: 2.0.14.1
|
125
|
+
signing_key:
|
126
|
+
specification_version: 4
|
127
|
+
summary: A client library for the Weebly Cloud API
|
128
|
+
test_files: []
|