lti_core 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 +8 -10
  3. data/lib/lti_core/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7fe755121a21b82596bad970b75ea70443757f3349131b94ae81bf4879322b2
4
- data.tar.gz: 1b4819d0d41c34dc82c1bbcb06914cc30862b836b1041837a0e903968de2707d
3
+ metadata.gz: bfbe67bb0cf10e60420dd0e5cf3d0e9223763c0311605418a815328bc9e8e9f8
4
+ data.tar.gz: 6f1b690cec2ca664f1c37e437781b6e9b0b8d50d9e3b3ba95f60fc3c8da428a6
5
5
  SHA512:
6
- metadata.gz: 7cdcf98b216e3bd00964dfbe8e3ebf28e477ad9b0b8c245b618dd96dc4ed47ef4f4b90afa74982d2a5ac37ba4fc7342ea123e8c04909a1b036cb85a93e78e047
7
- data.tar.gz: 618d2697cbc4b26b8740181b10194a13179fd31523d5f940a2dddf1de1e4ef3a62d41d9bc2e90f05627f719f76aaeb711b554455ce9e04dc759b4c21255e87ff
6
+ metadata.gz: e7ebf795f9a359fcb98e8f5271f3772415af06f19fce4b46fd887547df0e4074fd9ba1a91cde1379ac00c9c6b76da0631c1e1ac6cfce652af24ab76f5d9e4dd1
7
+ data.tar.gz: 50027174007caf8e73bc662b4c5b6ab3823be01e8840009132bf5b7b659b856ec31eb81eb330dcf55fd944adf2008b38863bde7db6c5770a197893ef5988ccc5
data/README.md CHANGED
@@ -1,24 +1,22 @@
1
1
  # LtiCore
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_core`. 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 UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
7
+ $ bundle add lti_core
14
8
 
15
9
  If bundler is not being used to manage dependencies, install the gem by executing:
16
10
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
11
+ $ gem install lti_core
18
12
 
19
13
  ## Usage
20
14
 
21
- TODO: Write usage instructions here
15
+ This gem is to implement as much as possible of the [LTI Core 1.3](https://www.imsglobal.org/spec/lti/v1p3/). 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_core_rails](https://github.com/afstanton/lti_core_rails). The intent of that is to be a drop-in Rails engine to make building a LTI Core 1.3 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/[USERNAME]/lti_core.
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/afstanton/lti_core.
32
30
 
33
31
  ## License
34
32
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LtiCore
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lti_core
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