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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -16
  3. data/lib/lti_core_rails/version.rb +1 -1
  4. metadata +15 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc268e1bac3a15b1c761795477ecff89263d2fef3e20f92ee431274b156e1346
4
- data.tar.gz: 39fbc9096c016e3a9cdb9fcb4efb8085d093741edb1d41c892304a450fbf3d71
3
+ metadata.gz: 7558ac1da5862a79e110813ad9ddfa7a085efa15cd7c9fcb23a4977a20a26135
4
+ data.tar.gz: a774c2e4a24047dcb18ae0899afcfc49dce713580dee713286e82f8a79160e17
5
5
  SHA512:
6
- metadata.gz: 3ea134123756f115ed5285b70b3267b3bccaf11443b14a64ddb60eafa9f2d20934363b2d088d2a72cc73e7c1256e3a073cccb76fbb50b54a68e3404801ee1156
7
- data.tar.gz: 4f17b5e55bb448298bdf8f7fb7bed77c4d9dc26892d10c63ef77cb1992ed446a202cce92431a3d28fd2b721ade48a3f905f825018368d2617967f2552d2ba64a
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
- ```ruby
11
- gem "lti_core_rails"
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
- And then execute:
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
- Or install it yourself as:
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.
@@ -1,3 +1,3 @@
1
1
  module LtiCoreRails
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_core_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_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