accredible-api-ruby 0.1.10 → 0.1.20
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 +4 -4
- data/README.md +2 -2
- data/accredible-api-ruby.gemspec +28 -0
- data/lib/{accredible-ruby.rb → accredible-api-ruby.rb} +9 -9
- data/lib/{accredible-ruby → accredible-api-ruby}/credential.rb +0 -0
- data/lib/{accredible-ruby → accredible-api-ruby}/design.rb +0 -0
- data/lib/{accredible-ruby → accredible-api-ruby}/errors/accredible_error.rb +0 -0
- data/lib/{accredible-ruby → accredible-api-ruby}/errors/authentication_error.rb +0 -0
- data/lib/{accredible-ruby → accredible-api-ruby}/evidence.rb +0 -0
- data/lib/{accredible-ruby → accredible-api-ruby}/group.rb +0 -0
- data/lib/{accredible-ruby → accredible-api-ruby}/reference.rb +0 -0
- data/lib/{accredible-ruby → accredible-api-ruby}/util.rb +0 -0
- data/lib/{accredible-ruby → accredible-api-ruby}/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +12 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9b482a4ed3812d4ef67921f81acae76e6afab6f
|
4
|
+
data.tar.gz: ded731ba81ca910c4f12fe3151b038bd17719e8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb15f3ca484e621b336a396e7f8bbddda307e9697365420903992a6eb0bfaa5dd4821f36116655d02cad33b7770348a5a6582182b940253cf9c24285a7acd072
|
7
|
+
data.tar.gz: ac0c0e6007f248349c26710f8fcb9aa96b8de0470681c1473ec768f4cf8a79412a7180f7fb25433ca47312b72a35d58c3096bc6a1447a81410e8e5f3e17431aa
|
data/README.md
CHANGED
@@ -12,7 +12,7 @@ Install
|
|
12
12
|
Add the following line to Gemfile:
|
13
13
|
|
14
14
|
```ruby
|
15
|
-
gem 'accredible-ruby'
|
15
|
+
gem 'accredible-api-ruby'
|
16
16
|
```
|
17
17
|
and run `bundle install` from your shell.
|
18
18
|
Then add the following line to an initializer, or appropriate config file.
|
@@ -114,7 +114,7 @@ Supported Ruby versions
|
|
114
114
|
|
115
115
|
License
|
116
116
|
-------
|
117
|
-
Accredible-Ruby is is free software, and may be redistributed under the
|
117
|
+
Accredible-API-Ruby is is free software, and may be redistributed under the
|
118
118
|
terms specified in the [LICENSE](/LICENSE) file.
|
119
119
|
|
120
120
|
Thanks to
|
@@ -0,0 +1,28 @@
|
|
1
|
+
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
|
2
|
+
require 'accredible-api-ruby/version'
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = 'accredible-api-ruby'
|
6
|
+
s.version = Accredible::VERSION
|
7
|
+
s.required_ruby_version = '>= 2.0.0'
|
8
|
+
s.date = '2016-03-11'
|
9
|
+
s.summary = "Accredible API gem"
|
10
|
+
s.description = "A simple gem for interacting with the accredible certificate & badge API"
|
11
|
+
s.authors = ["Jared Smith", "Deepender Singla", "Alan Heppenstall"]
|
12
|
+
s.email = 'deepender@accredible.com'
|
13
|
+
s.require_paths = ['lib']
|
14
|
+
s.homepage = 'https://github.com/accredible/accredible-api-ruby'
|
15
|
+
s.license = 'MIT'
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
|
19
|
+
s.add_dependency("rest-client", "~> 1.8")
|
20
|
+
|
21
|
+
s.add_development_dependency("byebug", "~> 8.2")
|
22
|
+
s.add_development_dependency("pry", "~> 0.10")
|
23
|
+
s.add_development_dependency("pry-byebug", "~> 3.3")
|
24
|
+
s.add_development_dependency("rake", "~> 10.5")
|
25
|
+
s.add_development_dependency("rspec", "~> 3.4")
|
26
|
+
s.add_development_dependency("webmock", "~> 1.16.1")
|
27
|
+
|
28
|
+
end
|
@@ -1,12 +1,12 @@
|
|
1
|
-
require "accredible-ruby/version"
|
2
|
-
require "accredible-ruby/credential"
|
3
|
-
require "accredible-ruby/group"
|
4
|
-
require "accredible-ruby/evidence"
|
5
|
-
require "accredible-ruby/reference"
|
6
|
-
require "accredible-ruby/design"
|
7
|
-
require "accredible-ruby/errors/accredible_error"
|
8
|
-
require "accredible-ruby/errors/authentication_error"
|
9
|
-
require "accredible-ruby/util"
|
1
|
+
require "accredible-api-ruby/version"
|
2
|
+
require "accredible-api-ruby/credential"
|
3
|
+
require "accredible-api-ruby/group"
|
4
|
+
require "accredible-api-ruby/evidence"
|
5
|
+
require "accredible-api-ruby/reference"
|
6
|
+
require "accredible-api-ruby/design"
|
7
|
+
require "accredible-api-ruby/errors/accredible_error"
|
8
|
+
require "accredible-api-ruby/errors/authentication_error"
|
9
|
+
require "accredible-api-ruby/util"
|
10
10
|
require "json"
|
11
11
|
require "rest-client"
|
12
12
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: accredible-api-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jared Smith
|
@@ -125,16 +125,17 @@ files:
|
|
125
125
|
- LICENSE
|
126
126
|
- README.md
|
127
127
|
- Rakefile
|
128
|
-
-
|
129
|
-
- lib/accredible-ruby
|
130
|
-
- lib/accredible-ruby/
|
131
|
-
- lib/accredible-ruby/
|
132
|
-
- lib/accredible-ruby/errors/
|
133
|
-
- lib/accredible-ruby/
|
134
|
-
- lib/accredible-ruby/
|
135
|
-
- lib/accredible-ruby/
|
136
|
-
- lib/accredible-ruby/
|
137
|
-
- lib/accredible-ruby/
|
128
|
+
- accredible-api-ruby.gemspec
|
129
|
+
- lib/accredible-api-ruby.rb
|
130
|
+
- lib/accredible-api-ruby/credential.rb
|
131
|
+
- lib/accredible-api-ruby/design.rb
|
132
|
+
- lib/accredible-api-ruby/errors/accredible_error.rb
|
133
|
+
- lib/accredible-api-ruby/errors/authentication_error.rb
|
134
|
+
- lib/accredible-api-ruby/evidence.rb
|
135
|
+
- lib/accredible-api-ruby/group.rb
|
136
|
+
- lib/accredible-api-ruby/reference.rb
|
137
|
+
- lib/accredible-api-ruby/util.rb
|
138
|
+
- lib/accredible-api-ruby/version.rb
|
138
139
|
- spec/accredible/base_spec.rb
|
139
140
|
- spec/accredible/credential_spec.rb
|
140
141
|
- spec/accredible/design_spec.rb
|