works_cited 0.1.8 → 0.1.13
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 +4 -4
- data/README.md +2 -0
- data/VERSION +1 -1
- data/app/controllers/works_cited/citations_controller.rb +1 -1
- data/app/helpers/works_cited/application_helper.rb +1 -1
- data/app/models/works_cited/citation.rb +37 -2
- data/app/models/works_cited/contributor.rb +14 -0
- data/app/views/works_cited/citation_types/citation/_tweet.html.haml +4 -1
- data/bin/rails +0 -0
- data/db/migrate/20210915160902_add_index_to_works_cited_contributors.rb +5 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/{20210902202653_create_works_cited_citations.works_cited.rb → 20210915161011_create_works_cited_citations.works_cited.rb} +0 -1
- data/spec/dummy/db/migrate/{20210902202654_create_works_cited_contributors.works_cited.rb → 20210915161012_create_works_cited_contributors.works_cited.rb} +0 -1
- data/spec/dummy/db/migrate/20210915161013_add_index_to_works_cited_contributors.works_cited.rb +6 -0
- data/spec/dummy/db/schema.rb +59 -59
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +419 -0
- data/spec/dummy/log/test.log +7106 -0
- data/works_cited.gemspec +7 -5
- metadata +6 -4
data/works_cited.gemspec
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: works_cited 0.1.
|
|
5
|
+
# stub: works_cited 0.1.13 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "works_cited".freeze
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.13"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.metadata = { "source_code_uri" => "http://github.com/gemvein/works_cited" } if s.respond_to? :metadata=
|
|
13
13
|
s.require_paths = ["lib".freeze]
|
|
14
14
|
s.authors = ["Loren Lundgren".freeze]
|
|
15
|
-
s.date = "2021-09-
|
|
15
|
+
s.date = "2021-09-15"
|
|
16
16
|
s.description = "Works cited allows you to add a list of the works cited in ActiveRecord objects, to be formatted by a helper that can be added to relevant pages to format the citations like a bibliography.".freeze
|
|
17
17
|
s.email = "loren.lundgren@gmail.com".freeze
|
|
18
18
|
s.executables = ["rails".freeze]
|
|
@@ -65,6 +65,7 @@ Gem::Specification.new do |s|
|
|
|
65
65
|
"config/routes.rb",
|
|
66
66
|
"db/migrate/20210830165845_create_works_cited_citations.works_cited.rb",
|
|
67
67
|
"db/migrate/20210831013102_create_works_cited_contributors.works_cited.rb",
|
|
68
|
+
"db/migrate/20210915160902_add_index_to_works_cited_contributors.rb",
|
|
68
69
|
"lib/tasks/works_cited_tasks.rake",
|
|
69
70
|
"lib/templates/haml/scaffold/_form.html.haml",
|
|
70
71
|
"lib/works_cited.rb",
|
|
@@ -143,9 +144,10 @@ Gem::Specification.new do |s|
|
|
|
143
144
|
"spec/dummy/db/development.sqlite3",
|
|
144
145
|
"spec/dummy/db/migrate/20210830171235_create_doodads.rb",
|
|
145
146
|
"spec/dummy/db/migrate/20210902150031_devise_create_users.rb",
|
|
146
|
-
"spec/dummy/db/migrate/20210902202653_create_works_cited_citations.works_cited.rb",
|
|
147
|
-
"spec/dummy/db/migrate/20210902202654_create_works_cited_contributors.works_cited.rb",
|
|
148
147
|
"spec/dummy/db/migrate/20210907170207_create_things.rb",
|
|
148
|
+
"spec/dummy/db/migrate/20210915161011_create_works_cited_citations.works_cited.rb",
|
|
149
|
+
"spec/dummy/db/migrate/20210915161012_create_works_cited_contributors.works_cited.rb",
|
|
150
|
+
"spec/dummy/db/migrate/20210915161013_add_index_to_works_cited_contributors.works_cited.rb",
|
|
149
151
|
"spec/dummy/db/schema.rb",
|
|
150
152
|
"spec/dummy/db/test.sqlite3",
|
|
151
153
|
"spec/dummy/lib/assets/.keep",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: works_cited
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Loren Lundgren
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-09-
|
|
11
|
+
date: 2021-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -375,6 +375,7 @@ files:
|
|
|
375
375
|
- config/routes.rb
|
|
376
376
|
- db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
|
|
377
377
|
- db/migrate/20210831013102_create_works_cited_contributors.works_cited.rb
|
|
378
|
+
- db/migrate/20210915160902_add_index_to_works_cited_contributors.rb
|
|
378
379
|
- lib/tasks/works_cited_tasks.rake
|
|
379
380
|
- lib/templates/haml/scaffold/_form.html.haml
|
|
380
381
|
- lib/works_cited.rb
|
|
@@ -453,9 +454,10 @@ files:
|
|
|
453
454
|
- spec/dummy/db/development.sqlite3
|
|
454
455
|
- spec/dummy/db/migrate/20210830171235_create_doodads.rb
|
|
455
456
|
- spec/dummy/db/migrate/20210902150031_devise_create_users.rb
|
|
456
|
-
- spec/dummy/db/migrate/20210902202653_create_works_cited_citations.works_cited.rb
|
|
457
|
-
- spec/dummy/db/migrate/20210902202654_create_works_cited_contributors.works_cited.rb
|
|
458
457
|
- spec/dummy/db/migrate/20210907170207_create_things.rb
|
|
458
|
+
- spec/dummy/db/migrate/20210915161011_create_works_cited_citations.works_cited.rb
|
|
459
|
+
- spec/dummy/db/migrate/20210915161012_create_works_cited_contributors.works_cited.rb
|
|
460
|
+
- spec/dummy/db/migrate/20210915161013_add_index_to_works_cited_contributors.works_cited.rb
|
|
459
461
|
- spec/dummy/db/schema.rb
|
|
460
462
|
- spec/dummy/db/test.sqlite3
|
|
461
463
|
- spec/dummy/lib/assets/.keep
|