lms-api 1.0.0 → 1.0.1

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: c81240c233496b4c395e79b88690cf87fc5229bf
4
- data.tar.gz: b9ec5abbdcde51b4776dfc16fc0ecb45e9cae2a1
3
+ metadata.gz: aebcbd65afb9ede972a95ff783f55f0ef6211e8a
4
+ data.tar.gz: 957db1545fa69928b5b3de97d637dd2fe803efed
5
5
  SHA512:
6
- metadata.gz: 48566b6c283242f347cd706a3dd2c78766ef12d7cbce7ecd30fbbf8abbac1ceb2a774c5a70d44c93d6ae0748bf912e4dc07b8ad622db511a5508563c4f6151f5
7
- data.tar.gz: 3ef819fda17bc8bd1fd67b001367abbcc2297573e310ea7421f8a61f6e775b4ffd4c16a9e4368a088381067b43e394a59b8db45cb00e33dd08f753dadaba2a40
6
+ metadata.gz: 36739daa3e11f917f04e6e4bb96c698529862b4bc062d32c70a19a126fe78dcd2881e1c1be9b6addd1a9b66a90eb4653c00eb452826e0635b52d0714e12b32fe
7
+ data.tar.gz: 2354723931d0e0b7ff17a99a57a422076d7b201d72966b27319d951691cffeeeae3320917003ae8c19a9a3e30fae526ef5e2b9250f9038114a6a9395640fb8fe
@@ -1,4 +1,4 @@
1
- Copyright 2016 Jamis Buck
1
+ Copyright 2016 Atomic Jolt
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # LMS::API
2
2
 
3
- This project describes a wrapper around LMS REST APIs.
3
+ This project provides a wrapper around the Instructure Canvas API.
4
4
 
5
5
 
6
6
  ## Installation
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ require 'rdoc/task'
8
8
 
9
9
  RDoc::Task.new(:rdoc) do |rdoc|
10
10
  rdoc.rdoc_dir = 'rdoc'
11
- rdoc.title = 'Canvas'
11
+ rdoc.title = 'LMS API'
12
12
  rdoc.options << '--line-numbers'
13
13
  rdoc.rdoc_files.include('README.rdoc')
14
14
  rdoc.rdoc_files.include('lib/**/*.rb')
@@ -16,15 +16,12 @@ end
16
16
 
17
17
  load './lib/tasks/lms_api.rake'
18
18
 
19
-
20
-
21
-
22
19
  Bundler::GemHelper.install_tasks
23
20
 
24
21
  begin
25
22
  require 'rspec/core/rake_task'
26
23
  RSpec::Core::RakeTask.new(:spec)
27
24
 
28
- task :default => :spec
25
+ task default: :spec
29
26
  rescue LoadError
30
27
  end
@@ -1,3 +1,3 @@
1
1
  module LMS
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,27 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lms-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
+ - Atomic Jolt
7
8
  - Jamis Buck
9
+ - Justin Ball
8
10
  autorequire:
9
11
  bindir: bin
10
12
  cert_chain: []
11
- date: 2016-12-06 00:00:00.000000000 Z
13
+ date: 2016-12-09 00:00:00.000000000 Z
12
14
  dependencies:
13
15
  - !ruby/object:Gem::Dependency
14
16
  name: rails
15
17
  requirement: !ruby/object:Gem::Requirement
16
18
  requirements:
17
- - - "~>"
19
+ - - ">="
18
20
  - !ruby/object:Gem::Version
19
21
  version: 4.2.7
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
23
25
  requirements:
24
- - - "~>"
26
+ - - ">="
25
27
  - !ruby/object:Gem::Version
26
28
  version: 4.2.7
27
29
  - !ruby/object:Gem::Dependency
@@ -80,9 +82,10 @@ dependencies:
80
82
  - - ">="
81
83
  - !ruby/object:Gem::Version
82
84
  version: '0'
83
- description: Wrapper for LMS API
85
+ description: Wrapper for the Instructure Canvas API
84
86
  email:
85
87
  - jamis@jamisbuck.org
88
+ - justin.ball@atomicjolt.com
86
89
  executables: []
87
90
  extensions: []
88
91
  extra_rdoc_files: []
@@ -130,5 +133,5 @@ rubyforge_project:
130
133
  rubygems_version: 2.5.1
131
134
  signing_key:
132
135
  specification_version: 4
133
- summary: Wrapper for LMS API
136
+ summary: Wrapper for the Instructure Canvas API
134
137
  test_files: []