lti_ags_rails 0.0.1 → 0.0.2
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 +11 -16
- data/lib/lti_ags_rails/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad16cb3808bf5c4ed5933667a722f4ee263e7c91cd8f50b479de0fa922ff20f1
|
|
4
|
+
data.tar.gz: 2c51dc8d679361d0b3b10bd89cc9f45f54fdcc53bc6ebee4b77c8dcff42ddc27
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fff81c077c3759f75fecd02b4f6b55d98d146a4f73b2726350a1e9078276cd4ee057c0146229cf341f19f57c6c45e8c33714f50c3ef5d8dc23e1b3db0b0e1c61
|
|
7
|
+
data.tar.gz: 48775fb9e906d01f9852e952c16fced758f3134bf4f2556c733a95db9617910f1ebe4236f413bccc7c2c2c7ad627b1980dcfad0e2eba1fd65ceaa9e32948ad1a
|
data/README.md
CHANGED
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
# LtiAgsRails
|
|
2
|
-
Short description and motivation.
|
|
3
|
-
|
|
4
|
-
## Usage
|
|
5
|
-
How to use my plugin.
|
|
6
2
|
|
|
7
3
|
## Installation
|
|
8
|
-
Add this line to your application's Gemfile:
|
|
9
4
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
5
|
+
Install the gem and add to the application's Gemfile by executing:
|
|
6
|
+
|
|
7
|
+
$ bundle add lti_advantage_rails
|
|
8
|
+
|
|
9
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
|
10
|
+
|
|
11
|
+
$ gem install lti_advantage_rails
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
$ bundle
|
|
17
|
-
```
|
|
15
|
+
This engine is to implement as much as possible of the [LTI Assignment and Grade Services 2.0](https://www.imsglobal.org/spec/lti-ags/v2p0/). The intent of this is to be a drop-in Rails engine to make building a LTI Assignment and Grade Services 2.0 application dead simple.
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
$ gem install lti_ags_rails
|
|
22
|
-
```
|
|
17
|
+
The need for this project stems from the [ims-lti](https://github.com/instructure/ims-lti) gem and the [lti_provider_engine](https://github.com/instructure/lti_provider_engine) engine. While those are decent starting points, they do not appear to implement the latest standards. This is a fresh implementation which will allow developers to use some or all relevant standards as needed.
|
|
23
18
|
|
|
24
19
|
## Contributing
|
|
25
20
|
Contribution directions go here.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lti_ags_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aaron F Stanton
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 7.1.3.2
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: lti_ags
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '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'
|
|
27
41
|
description:
|
|
28
42
|
email:
|
|
29
43
|
- afstanton@gmail.com
|