lti_core_rails 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -16
- data/lib/lti_core_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: 7558ac1da5862a79e110813ad9ddfa7a085efa15cd7c9fcb23a4977a20a26135
|
4
|
+
data.tar.gz: a774c2e4a24047dcb18ae0899afcfc49dce713580dee713286e82f8a79160e17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05bd2841234cd7eaac459a17e99dea58c9a9cf3780f8f065fd10e85a4e6460b66ebdff1fc876a56037b0b15880ed338f36ef217d5480f7fa1c5b49d31ff9ce83
|
7
|
+
data.tar.gz: 32142667949f30dfd4672dc8bc0a0f9bd41bbb781178e2c5a6b8152405d65ee1d8f7d04541b5442f65c1871320e01d2459b7ace3467d28ba29a9f4ac60269048
|
data/README.md
CHANGED
@@ -1,25 +1,20 @@
|
|
1
1
|
# LtiCoreRails
|
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_core_rails
|
8
|
+
|
9
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
10
|
+
|
11
|
+
$ gem install lti_core_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 Core 1.3](https://www.imsglobal.org/spec/lti/v1p3/). The intent of this is to be a drop-in Rails engine to make building a LTI Core 1.3 application dead simple.
|
18
16
|
|
19
|
-
|
20
|
-
```bash
|
21
|
-
$ gem install lti_core_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_core_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_core
|
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
|