lti_dl_rails 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -16
  3. data/lib/lti_dl_rails/version.rb +1 -1
  4. metadata +15 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f107c3ba630bdbe81c021d756dac28856aedf9563f7eeb4912ed60ab5beb079b
4
- data.tar.gz: b0aa51df7e8f5cf0f8bcbad22e7a37c94511243ab1aebf5fd54a0010bda193d4
3
+ metadata.gz: 8968ce3ea580df7a68028bc89cb4ebdd9e585dff3c2dfeede7997ac18deec68d
4
+ data.tar.gz: 40979723b5d10a797b08565c3c7d0ba0a01ea1f48d63b3858f36e392506d8e08
5
5
  SHA512:
6
- metadata.gz: 4ebc495954b006f08b8c9bac63816f1fc959ccfd5f9da9fed32e550b229edf57208513cdb6c54fcdfee33f5b767eac9f628da62fa8e750476debd144622db2ab
7
- data.tar.gz: 24966257e098e6771ff68fa5f34998b8aa89997c1e3b9b8cf8411c19d3e86eeb0ff2df5a182c3aeaa477e8783239f80d9cd81f91b06642177892ff6c42adbb7d
6
+ metadata.gz: e2fb6f5597e26ee5b6e100f048752296d26718eba05119c23f9b902e5607599ba4a04981a652f74b1b8429a55683245c935a43f6b02bc4b9ac6afb2e73469941
7
+ data.tar.gz: 155ebf5c493255683bf29948e2f7eb613ac3512b3d33a204ad049385c5fc186abf3d7ea055251079ad2ec7bf1c334c8dea12a4b0518059b47e17299d5a6e7f39
data/README.md CHANGED
@@ -1,25 +1,20 @@
1
1
  # LtiDlRails
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
- ```ruby
11
- gem "lti_dl_rails"
12
- ```
5
+ Install the gem and add to the application's Gemfile by executing:
6
+
7
+ $ bundle add lti_dl_rails
8
+
9
+ If bundler is not being used to manage dependencies, install the gem by executing:
10
+
11
+ $ gem install lti_dl_rails
12
+
13
+ ## Usage
13
14
 
14
- And then execute:
15
- ```bash
16
- $ bundle
17
- ```
15
+ This engine is to implement as much as possible of the [LTI Deep Linking 2.0](https://www.imsglobal.org/spec/lti-dl/v2p0). The intent of this is to be a drop-in Rails engine to make building a LTI Deep Linking 2.0 application dead simple.
18
16
 
19
- Or install it yourself as:
20
- ```bash
21
- $ gem install lti_dl_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.
@@ -1,3 +1,3 @@
1
1
  module LtiDlRails
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lti_dl_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
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_dl
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