solid-community-client-simple 0.0.3 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb57f2c8135d3faa45c2920c23b3524f7e9364bbdc3c16f423cab14fc19caa92
4
- data.tar.gz: c4d848a43f8228153cd31af586e12795bf0592a40a9617f51b63e4aede39152f
3
+ metadata.gz: baade2ed8e180445bfd2927fa8e65f16cd6575d8b14d98cd8777666644ea3cc4
4
+ data.tar.gz: 84e0a42fa0884b76b570155e6c7d8edcba9ac4ba6511c1ab36cfbe05d97916ad
5
5
  SHA512:
6
- metadata.gz: 8b275de160f100f06f6bbf8b000521aa3ed767a1560498c7089a451ad9809ac8cd5e6eb1b0f15ae597bf16d695df9c070ddbd04a0a6ab322d41528890b3241e5
7
- data.tar.gz: fea34b8719aa51866cd156f53444ef2dc32a419ad666ac507696844ec4e3a0cafe6477dd66188bf2948af03353b2241e30858dd599754cf21c8ffcfdca91ac42
6
+ metadata.gz: 623b84aa4747733d42233f07320799a47528e4271614231903bc926688f7b5002d9d4a6e2a24382fd39eb2c1714d96b883cdf209697a57fd6d601c5a892c87b6
7
+ data.tar.gz: 6be66cdbd08722ad4e52b287edc5ae0167f7de7e53a313a78153232e1717806c806b64eff0b99aa9fbee5c061a8238d5bcda786a63b9e8f54d92a71a5ce43a5d
data/demo.rb CHANGED
@@ -1,4 +1,3 @@
1
- # require "./lib/solid.rb"
2
1
  require "solid-community-client-simple"
3
2
  s = SOLID::CommunityClient.new(server: "http://localhost:3000/", username: "mark.wilkinson@upm.es", password: "markw")
4
3
  s.login
@@ -1,5 +1,8 @@
1
1
  module SOLID
2
2
  class CommunityClient
3
+
4
+ VERSION = "0.0.5"
5
+
3
6
  require_relative './config'
4
7
 
5
8
  attr_accessor :username, :password, :server, :account_meta, :login_meta, :credentials_url, :webid_url, :webids,
@@ -0,0 +1,2 @@
1
+ # frozen_string_literal: true
2
+
@@ -1 +1 @@
1
- require_relative "./solid.rb"
1
+ require_relative "./solid-community-client-simple/communityclient.rb"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solid-community-client-simple
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Wilkinson
@@ -27,13 +27,13 @@ files:
27
27
  - LICENSE
28
28
  - README.md
29
29
  - demo.rb
30
- - lib/account.rb
31
- - lib/config.rb
32
- - lib/dpop.rb
33
- - lib/login.rb
34
30
  - lib/solid-community-client-simple.rb
35
- - lib/solid.rb
36
- - lib/version.rb
31
+ - lib/solid-community-client-simple/account.rb
32
+ - lib/solid-community-client-simple/communityclient.rb
33
+ - lib/solid-community-client-simple/config.rb
34
+ - lib/solid-community-client-simple/dpop.rb
35
+ - lib/solid-community-client-simple/login.rb
36
+ - lib/solid-community-client-simple/version.rb
37
37
  - test.rb
38
38
  homepage: https://github.com/markwilkinson/solid-community-client-simple
39
39
  licenses:
@@ -43,6 +43,7 @@ metadata:
43
43
  homepage_uri: https://github.com/markwilkinson/solid-community-client-simple
44
44
  source_code_uri: https://github.com/markwilkinson/solid-community-client-simple
45
45
  changelog_uri: https://github.com/markwilkinson/solid-community-client-simple/blob/master/CHANGELOG.md
46
+ documentation_uri: https://rubydoc.info/github/markwilkinson/solid-community-client-simple
46
47
  post_install_message:
47
48
  rdoc_options: []
48
49
  require_paths:
@@ -58,7 +59,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
59
  - !ruby/object:Gem::Version
59
60
  version: '0'
60
61
  requirements: []
61
- rubygems_version: 3.3.23
62
+ rubygems_version: 3.2.33
62
63
  signing_key:
63
64
  specification_version: 4
64
65
  summary: A simple client to interact with the SOLID Community Server.
data/lib/version.rb DELETED
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module SOLID
4
- module CommunityClient
5
- VERSION = "0.0.3"
6
- end
7
- end