lti_dl 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 +8 -10
- data/lib/lti_dl/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72a3d47c6a93aeedad9a456847851bc20db387af9e497637ef76a9bb1f7712fa
|
4
|
+
data.tar.gz: 63c6d01defaf8857d9dbd92722575e1fea1edc4c56ef648e1b5093f4a74d3644
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40bc7b3152278da1e35007b057bffc431e9968e677b646229e83bfbfbb8028a5a031f44ea980d37587ebf654d1844ba27dca1557c89c5b351c87fd699aa58010
|
7
|
+
data.tar.gz: b32cf5c7f7cd051964d6a3dc66c0cfffaa42432b3e2f13b57a73772d428904abcb06bce71d02f8ddc0c65b670b7d4c65b2f6bf79c21fdf543e09c7c1f3f28ade
|
data/README.md
CHANGED
@@ -1,24 +1,22 @@
|
|
1
1
|
# LtiDl
|
2
2
|
|
3
|
-
TODO: Delete this and the text below, and describe your gem
|
4
|
-
|
5
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/lti_dl`. To experiment with that code, run `bin/console` for an interactive prompt.
|
6
|
-
|
7
3
|
## Installation
|
8
4
|
|
9
|
-
TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
|
10
|
-
|
11
5
|
Install the gem and add to the application's Gemfile by executing:
|
12
6
|
|
13
|
-
$ bundle add
|
7
|
+
$ bundle add lti_dl
|
14
8
|
|
15
9
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
16
10
|
|
17
|
-
$ gem install
|
11
|
+
$ gem install lti_dl
|
18
12
|
|
19
13
|
## Usage
|
20
14
|
|
21
|
-
|
15
|
+
This gem is to implement as much as possible of the [LTI Deep Linking 2.0](https://www.imsglobal.org/spec/lti-dl/v2p0). This should make implementing an application that complies with that very simple to do.
|
16
|
+
|
17
|
+
For those of you using Rails, you'll want to use [lti_dl_rails](https://github.com/afstanton/lti_dl_rails). The intent of that is to be a drop-in Rails engine to make building a LTI Deep Linking 2.0 application dead simple.
|
18
|
+
|
19
|
+
The need for this project stems from the [ims-lti](https://github.com/instructure/ims-lti) gem. While that is a decent starting point, it does 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.
|
22
20
|
|
23
21
|
## Development
|
24
22
|
|
@@ -28,7 +26,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
28
26
|
|
29
27
|
## Contributing
|
30
28
|
|
31
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/afstanton/lti_dl.
|
32
30
|
|
33
31
|
## License
|
34
32
|
|
data/lib/lti_dl/version.rb
CHANGED