sitemandala-ruby 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/sitemandala.rb +15 -1
- data/lib/sitemandala/forms.rb +9 -0
- data/lib/sitemandala/items.rb +9 -0
- data/lib/sitemandala/lists.rb +9 -0
- data/lib/sitemandala/menus.rb +9 -0
- data/lib/sitemandala/notes.rb +9 -0
- data/lib/sitemandala/organizations.rb +9 -0
- data/lib/sitemandala/responses.rb +9 -0
- data/lib/sitemandala/sections.rb +9 -0
- data/lib/sitemandala/shorturls.rb +9 -0
- data/lib/sitemandala/tags.rb +9 -0
- data/lib/sitemandala/templates.rb +9 -0
- data/lib/sitemandala/topics.rb +9 -0
- data/lib/sitemandala/users.rb +9 -0
- data/lib/sitemandala/version.rb +3 -0
- metadata +44 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a31dc012c9b727d091bf772bfc66a73d168c3b50
|
4
|
+
data.tar.gz: 8125eb65b4f721440ca5482cbe7eb0a37bebda58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbe38569e6ac9603dd3b027dc98ba2da0398125ba3752ef1b6817f4deb20002196e0f5f413ebc091862ab8b5e2986d34fcd27236585b71ef273b3b064e16c93b
|
7
|
+
data.tar.gz: 0a4b245de12e308fd45a9c38f7d8e752e3ceb610d3f8a79183498009b60a060fdcc2178446b94525da58a9589358814eb07ec05441c7801f6a7e2565409e306c
|
data/lib/sitemandala.rb
CHANGED
@@ -12,9 +12,23 @@ require 'sitemandala/contacts'
|
|
12
12
|
require 'sitemandala/domains'
|
13
13
|
require 'sitemandala/emails'
|
14
14
|
require 'sitemandala/events'
|
15
|
+
require 'sitemandala/folders'
|
16
|
+
require 'sitemandala/forms'
|
17
|
+
require 'sitemandala/items'
|
18
|
+
require 'sitemandala/lists'
|
19
|
+
require 'sitemandala/menus'
|
20
|
+
require 'sitemandala/notes'
|
21
|
+
require 'sitemandala/organizations'
|
15
22
|
require 'sitemandala/pages'
|
16
23
|
require 'sitemandala/posts'
|
17
|
-
require 'sitemandala/
|
24
|
+
require 'sitemandala/responses'
|
25
|
+
require 'sitemandala/sections'
|
26
|
+
require 'sitemandala/shorturls'
|
27
|
+
require 'sitemandala/tags'
|
28
|
+
require 'sitemandala/templates'
|
29
|
+
require 'sitemandala/topics'
|
30
|
+
require 'sitemandala/users'
|
31
|
+
require 'sitemandala/version'
|
18
32
|
|
19
33
|
module SiteMandala
|
20
34
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sitemandala-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Greg Kops
|
@@ -9,7 +9,35 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2014-12-12 00:00:00.000000000 Z
|
12
|
-
dependencies:
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: httparty
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.10.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.10.0
|
13
41
|
description: 'A Ruby library for the Site Mandala API '
|
14
42
|
email: greg@thinktopography.com
|
15
43
|
executables: []
|
@@ -27,10 +55,24 @@ files:
|
|
27
55
|
- lib/sitemandala/emails.rb
|
28
56
|
- lib/sitemandala/events.rb
|
29
57
|
- lib/sitemandala/folders.rb
|
58
|
+
- lib/sitemandala/forms.rb
|
59
|
+
- lib/sitemandala/items.rb
|
60
|
+
- lib/sitemandala/lists.rb
|
61
|
+
- lib/sitemandala/menus.rb
|
62
|
+
- lib/sitemandala/notes.rb
|
63
|
+
- lib/sitemandala/organizations.rb
|
30
64
|
- lib/sitemandala/pages.rb
|
31
65
|
- lib/sitemandala/posts.rb
|
32
66
|
- lib/sitemandala/resource.rb
|
67
|
+
- lib/sitemandala/responses.rb
|
68
|
+
- lib/sitemandala/sections.rb
|
69
|
+
- lib/sitemandala/shorturls.rb
|
33
70
|
- lib/sitemandala/sitemandala.rb
|
71
|
+
- lib/sitemandala/tags.rb
|
72
|
+
- lib/sitemandala/templates.rb
|
73
|
+
- lib/sitemandala/topics.rb
|
74
|
+
- lib/sitemandala/users.rb
|
75
|
+
- lib/sitemandala/version.rb
|
34
76
|
homepage: http://rubygems.org/gems/sitemandala
|
35
77
|
licenses:
|
36
78
|
- MIT
|