works_cited 0.1.1 → 0.1.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 +4 -4
- data/VERSION +1 -1
- data/works_cited.gemspec +2 -4
- metadata +2 -4
- data/bin/rails +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 110b6c268968fd1b8cab60c323b928c032be5eb4da7f097e22701b0484aadf1e
|
|
4
|
+
data.tar.gz: baab68fedbb6e697518337823437d40ff54fcc263b4e29d65907c37e4a49209d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a4c62041cdce40afec890ed23b2d49b4cfabe86a3c734f02828acac4f12a352875cecf2eea36098a2bef3fe989684b16245044d89a04da2368f24c2a2fe0947
|
|
7
|
+
data.tar.gz: b70c3668102a906bc47a0b980d8e68e5b2fb986c11104e5d2f5ce5841b320ee286969123d67f4b9a447cfe962d6282a9dcc6da249fea3acef116b5c2f42d4d4f
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/works_cited.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
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.2 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.2"
|
|
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=
|
|
@@ -15,7 +15,6 @@ Gem::Specification.new do |s|
|
|
|
15
15
|
s.date = "2021-09-08"
|
|
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
|
-
s.executables = ["rails".freeze]
|
|
19
18
|
s.extra_rdoc_files = [
|
|
20
19
|
"LICENSE.txt",
|
|
21
20
|
"README.md"
|
|
@@ -60,7 +59,6 @@ Gem::Specification.new do |s|
|
|
|
60
59
|
"app/views/works_cited/citations/preview.html.haml",
|
|
61
60
|
"app/views/works_cited/citations/show.html.haml",
|
|
62
61
|
"app/views/works_cited/contributors/_fields.html.haml",
|
|
63
|
-
"bin/rails",
|
|
64
62
|
"config/initializers/simple_form.rb",
|
|
65
63
|
"config/locales/simple_form.en.yml",
|
|
66
64
|
"config/routes.rb",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Loren Lundgren
|
|
@@ -324,8 +324,7 @@ description: Works cited allows you to add a list of the works cited in ActiveRe
|
|
|
324
324
|
objects, to be formatted by a helper that can be added to relevant pages to format
|
|
325
325
|
the citations like a bibliography.
|
|
326
326
|
email: loren.lundgren@gmail.com
|
|
327
|
-
executables:
|
|
328
|
-
- rails
|
|
327
|
+
executables: []
|
|
329
328
|
extensions: []
|
|
330
329
|
extra_rdoc_files:
|
|
331
330
|
- LICENSE.txt
|
|
@@ -370,7 +369,6 @@ files:
|
|
|
370
369
|
- app/views/works_cited/citations/preview.html.haml
|
|
371
370
|
- app/views/works_cited/citations/show.html.haml
|
|
372
371
|
- app/views/works_cited/contributors/_fields.html.haml
|
|
373
|
-
- bin/rails
|
|
374
372
|
- config/initializers/simple_form.rb
|
|
375
373
|
- config/locales/simple_form.en.yml
|
|
376
374
|
- config/routes.rb
|
data/bin/rails
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
|
|
4
|
-
# This command will automatically be run when you run "rails" with Rails gems
|
|
5
|
-
# installed from the root of your application.
|
|
6
|
-
|
|
7
|
-
ENGINE_ROOT = File.expand_path('..', __dir__)
|
|
8
|
-
ENGINE_PATH = File.expand_path('../lib/works_cited/engine', __dir__)
|
|
9
|
-
APP_PATH = File.expand_path('../spec/dummy/config/application', __dir__)
|
|
10
|
-
|
|
11
|
-
# Set up gems listed in the Gemfile.
|
|
12
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
|
13
|
-
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
|
14
|
-
|
|
15
|
-
require 'rails/all'
|
|
16
|
-
require 'rails/engine/commands'
|