lti_ags 0.0.1 → 0.0.3

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_ags/version.rb +1 -1
  4. metadata +44 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6bf22bd68172cdf49bc054b9a6b5d9928fdf147ae4e3d7a27ba699e7d0cca86
4
- data.tar.gz: edfb4b794be1c3f1e4be7197c16370eb5d81fd35c9b319118158bf5eb8233fdb
3
+ metadata.gz: 4a8e3afb8478988ca94715e398738e927fcc0406834d3d412644f88f67aebf33
4
+ data.tar.gz: ca4199173d850fe13f9c616230ce691463a2a39ab78fbab32643225641d443e9
5
5
  SHA512:
6
- metadata.gz: 47b624046383b016f9fd5c41bb637b2fff8505c1f1ee73ef143a03c4339da853c02b1702cc4c045191916b0e71cb76d87b3a897e53dbb9b74029918c13eca714
7
- data.tar.gz: 786ad0515aabdf717bc9b897d88024bab57f274039de9fca4d2682004692c654fad3abe61fe78901f2261081fb78c8801460a82910d06e08c35cf98328343296
6
+ metadata.gz: cc1b897c35be8e33a4fd0a083391414b573e1c6189e3fb0c2d83ab0d312f58a40bc103a5ca75c30baefefd23051e2332d6b0a8de9a6121caca16cc660e8b9824
7
+ data.tar.gz: afb4546d03e411e6bfe6cc7f7c66a31ac7a3192694af1308e528d63a00f6f70cf3418f48f3b1a9746075ffb2bbe55bf71bda31f8027e60376e79413d6dff5bbd
data/README.md CHANGED
@@ -1,24 +1,22 @@
1
1
  # LtiAgs
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_ags`. 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_ags
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_ags
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 Assignment and Grade Services 2.0](https://www.imsglobal.org/spec/lti-ags/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_ags_rails](https://github.com/afstanton/lti_ags_rails). The intent of that is to be a drop-in Rails engine to make building a LTI Assignment and Grade Services 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/[USERNAME]/lti_ags.
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/afstanton/lti_ags.
32
30
 
33
31
  ## License
34
32
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LtiAgs
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lti_ags
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron F Stanton
@@ -9,7 +9,49 @@ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2024-03-23 00:00:00.000000000 Z
12
- dependencies: []
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '13.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '13.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.21'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.21'
13
55
  description:
14
56
  email:
15
57
  - afstanton@gmail.com