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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f6602b8712b5921aea9dc781ffa7f43f463825b4
4
- data.tar.gz: eb7836e18bc27097d900441891c6762a38f40955
3
+ metadata.gz: c9b482a4ed3812d4ef67921f81acae76e6afab6f
4
+ data.tar.gz: ded731ba81ca910c4f12fe3151b038bd17719e8b
5
5
  SHA512:
6
- metadata.gz: 04bbd5388287a377f428a193d44e0d86f02bad489ada0fbd21ee7c8fb0aeab5793fd849fe6b3c44f488016b7e25fb536b1032b81f6dc4dd8c8c700d0fbb7c44d
7
- data.tar.gz: 7b360bed0eea30797728aeea5dd0835599acd7924e947e42ddc2cab859288072bcae41da1834800b02abc5810d91b8a8e3ed34a247e75804f1ecbd41422df127
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
 
@@ -1,3 +1,3 @@
1
1
  module Accredible
2
- VERSION = "0.1.10"
2
+ VERSION = "0.1.20"
3
3
  end
@@ -3,7 +3,7 @@ if ENV['CODECLIMATE_REPO_TOKEN']
3
3
  CodeClimate::TestReporter.start
4
4
  end
5
5
 
6
- require 'accredible-ruby'
6
+ require 'accredible-api-ruby'
7
7
  require 'pry'
8
8
  require 'webmock/rspec'
9
9
 
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.10
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
- - lib/accredible-ruby.rb
129
- - lib/accredible-ruby/credential.rb
130
- - lib/accredible-ruby/design.rb
131
- - lib/accredible-ruby/errors/accredible_error.rb
132
- - lib/accredible-ruby/errors/authentication_error.rb
133
- - lib/accredible-ruby/evidence.rb
134
- - lib/accredible-ruby/group.rb
135
- - lib/accredible-ruby/reference.rb
136
- - lib/accredible-ruby/util.rb
137
- - lib/accredible-ruby/version.rb
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