lti_advantage_rails 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 307833ef01b488040a75cf0ed002e1bb29e676dd0fdb2879ba39c85214cfc0e8
4
- data.tar.gz: 9316cb325c3792b4dec025a52923403aec51b8595ec58824d6921079c551ab39
3
+ metadata.gz: a05ba77afb878edfb5835ecdd0e2172b9a1f6a5c9645033cbee14764ade26d5d
4
+ data.tar.gz: 6af33baf37833d65bd5452645ec85ad420c7a780f1d32a96a74356bcb1065da2
5
5
  SHA512:
6
- metadata.gz: aa8059f673cccd0df63c69938ce2d353565bf54776e244a22878ddf780a47a5b0dccf6dfeb3359aeb56735360eac1fad20f18c9a103ff7b6ae0b909319d920e5
7
- data.tar.gz: 16c99eda1397a719c94f899a3f28246b46fa5f72ef3f980dd538c87b2eaed935c0be5e65e48a2b97d495efbac4dbbfb177bad1a0f8aa7946e5bb781c7c7d7569
6
+ metadata.gz: a83878af84c820957719e08f3435cdcd6cb5464bb5d3f8eed0fe49b7c51e27e1a6a725088706ccbc248dfcedbe8e18b67af2c4a7581c8061a6a9dee903cdcd2a
7
+ data.tar.gz: 3a07098dfe4213e30c88dcb59600bb3be8cfb5fb076b0a541ca609f550bb943c738d92ce2230427d67f32886e4867fa7d134c39114e4c2335fe76715b2b42317
data/README.md CHANGED
@@ -1,25 +1,29 @@
1
1
  # LtiAdvantageRails
2
- Short description and motivation.
2
+
3
+ ## Installation
4
+
5
+ Install the gem and add to the application's Gemfile by executing:
6
+
7
+ $ bundle add lti_advantage_rails
8
+
9
+ If bundler is not being used to manage dependencies, install the gem by executing:
10
+
11
+ $ gem install lti_advantage_rails
3
12
 
4
13
  ## Usage
5
- How to use my plugin.
6
14
 
7
- ## Installation
8
- Add this line to your application's Gemfile:
15
+ This gem is a wrapper for four other engines, each of which will implement a different LTI specification, the whole of which should make implementing an LTI Advantage Complete application easy. Those four engines are:
16
+
17
+ [lti_core_rails](https://github.com/afstanton/lti_core_rails)
18
+ [lti_dl_rails](https://github.com/afstanton/lti_dl_rails)
19
+ [lti_nrps_rails](https://github.com/afstanton/lti_nrps_rails)
20
+ [lti_ags_rails](https://github.com/afstanton/lti_ags_rails)
9
21
 
10
- ```ruby
11
- gem "lti_advantage_rails"
12
- ```
22
+ Pointers to relevant specs will be found in each of those engines.
13
23
 
14
- And then execute:
15
- ```bash
16
- $ bundle
17
- ```
24
+ The intent of this entire project is to make the demo app found in spec/dummy pass all the required tests for LTI Advantage Complete certification. Given that, it should be dead simple to use that example as a starting point for your own apps.
18
25
 
19
- Or install it yourself as:
20
- ```bash
21
- $ gem install lti_advantage_rails
22
- ```
26
+ 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
27
 
24
28
  ## Contributing
25
29
  Contribution directions go here.
@@ -1,3 +1,3 @@
1
1
  module LtiAdvantageRails
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_advantage_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,62 @@ 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_rails
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'
41
+ - !ruby/object:Gem::Dependency
42
+ name: lti_dl_rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: lti_nrps_rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: lti_ags_rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
27
83
  description:
28
84
  email:
29
85
  - afstanton@gmail.com