jfm 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +38 -0
- data/LICENSE.txt +21 -0
- data/README.md +101 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/jfm +89 -0
- data/jfm.gemspec +27 -0
- data/lib/jfm.rb +70 -0
- data/lib/jfm/version.rb +3 -0
- metadata +75 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2b721f4a0a9bc23114c21f203534db59521668bb3bfb47e8b474d3fdf4832165
|
4
|
+
data.tar.gz: 3b725575cfc7452f59a18f2cd3e95ebd53bd26e726622a5a1777a014b0317a98
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a3f5503d0ed1f9c531c92e50753ea5b5fb1282bae0c69b4e04840aeb0177ed63c52651538a2f0786a705564d35f3cf33274c81677169d66432afcf7a31c23cf0
|
7
|
+
data.tar.gz: b98de54f463f694a31f5e230fb902ddacc5cb0ba84967268faa0d4522a8f030dc59821f41a126786fd1654895824ebd80c219b5465670b9168193150725f4485
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at rob@bigfish.co.uk. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
jfm (0.1.0)
|
5
|
+
dry-cli (~> 0.6.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
concurrent-ruby (1.1.7)
|
11
|
+
diff-lcs (1.4.4)
|
12
|
+
dry-cli (0.6.0)
|
13
|
+
concurrent-ruby (~> 1.0)
|
14
|
+
rake (12.3.3)
|
15
|
+
rspec (3.10.0)
|
16
|
+
rspec-core (~> 3.10.0)
|
17
|
+
rspec-expectations (~> 3.10.0)
|
18
|
+
rspec-mocks (~> 3.10.0)
|
19
|
+
rspec-core (3.10.0)
|
20
|
+
rspec-support (~> 3.10.0)
|
21
|
+
rspec-expectations (3.10.0)
|
22
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
23
|
+
rspec-support (~> 3.10.0)
|
24
|
+
rspec-mocks (3.10.0)
|
25
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
26
|
+
rspec-support (~> 3.10.0)
|
27
|
+
rspec-support (3.10.0)
|
28
|
+
|
29
|
+
PLATFORMS
|
30
|
+
ruby
|
31
|
+
|
32
|
+
DEPENDENCIES
|
33
|
+
jfm!
|
34
|
+
rake (~> 12.0)
|
35
|
+
rspec (~> 3.0)
|
36
|
+
|
37
|
+
BUNDLED WITH
|
38
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Rob Miller
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
# jfm
|
2
|
+
|
3
|
+
`jfm` is a tool for interacting with Jekyll frontmatter from the command
|
4
|
+
line.
|
5
|
+
|
6
|
+
In Jekyll, all posts have “frontmatter” at the start of them, that
|
7
|
+
define certain things about the post:
|
8
|
+
|
9
|
+
```
|
10
|
+
---
|
11
|
+
layout: post
|
12
|
+
title: A lovely post
|
13
|
+
---
|
14
|
+
|
15
|
+
Here’s a lovely post
|
16
|
+
```
|
17
|
+
|
18
|
+
The frontmatter is the bit between the `---` and the `---`.
|
19
|
+
|
20
|
+
This tool allows you to search for posts based on their frontmatter, and
|
21
|
+
then manipulate that frontmatter in certain ways. Basically, it makes
|
22
|
+
doing find-and-replace on Jekyll frontmatter a lot easier.
|
23
|
+
|
24
|
+
## Installation
|
25
|
+
|
26
|
+
$ gem install jfm
|
27
|
+
|
28
|
+
## Usage
|
29
|
+
|
30
|
+
`jfm` offers two commands: `find` and `edit`.
|
31
|
+
|
32
|
+
### Finding posts
|
33
|
+
|
34
|
+
`find` finds posts that match the given queries. For example, given
|
35
|
+
a site with only the example post given above, you could find that post
|
36
|
+
in the following ways:
|
37
|
+
|
38
|
+
```
|
39
|
+
$ jfm find "layout"
|
40
|
+
_posts/2020-12-02-lovely-post.markdown
|
41
|
+
|
42
|
+
$ jfm find "layout: post"
|
43
|
+
_posts/2020-12-02-lovely-post.markdown
|
44
|
+
|
45
|
+
$ jfm find "layout: ~page"
|
46
|
+
_posts/2020-12-02-lovely-post.markdown
|
47
|
+
|
48
|
+
$ jfm find "title: A lovely post"
|
49
|
+
_posts/2020-12-02-lovely-post.markdown
|
50
|
+
|
51
|
+
$ jfm find "title: A lovely post" "layout: post"
|
52
|
+
_posts/2020-12-02-lovely-post.markdown
|
53
|
+
```
|
54
|
+
|
55
|
+
In short:
|
56
|
+
|
57
|
+
* a query of `foo` will match posts that have a variable called `foo`
|
58
|
+
regardless of its value
|
59
|
+
* a query of `foo: bar` will match posts that have a variable called
|
60
|
+
`foo` set to the value `bar`
|
61
|
+
* a query of `foo: ~bar` will match posts that have a variable called
|
62
|
+
`foo` that is set to any value *other* than `bar`
|
63
|
+
* you can pass multiple queries; `find` will return posts that match
|
64
|
+
them all
|
65
|
+
|
66
|
+
### Editing frontmatter
|
67
|
+
|
68
|
+
`edit` edits the frontmatter to set a given value. For example, to set
|
69
|
+
the layout of every single post to “page”, you could:
|
70
|
+
|
71
|
+
```
|
72
|
+
$ ls _posts/* | jfm edit "layout: page"
|
73
|
+
```
|
74
|
+
|
75
|
+
This pairs well with the `find` command to only edit certain posts:
|
76
|
+
|
77
|
+
```
|
78
|
+
$ jfm find "layout: post" | jfm edit "layout: page"
|
79
|
+
```
|
80
|
+
|
81
|
+
If a variable with that name already exists, it will be replaced; if it
|
82
|
+
doesn’t exist, it will be created.
|
83
|
+
|
84
|
+
## Development
|
85
|
+
|
86
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
87
|
+
|
88
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
89
|
+
|
90
|
+
## Contributing
|
91
|
+
|
92
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/jfm. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/jfm/blob/master/CODE_OF_CONDUCT.md).
|
93
|
+
|
94
|
+
|
95
|
+
## License
|
96
|
+
|
97
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
98
|
+
|
99
|
+
## Code of Conduct
|
100
|
+
|
101
|
+
Everyone interacting in the Jfm project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/jfm/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "jfm"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/jfm
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
|
5
|
+
require "dry/cli"
|
6
|
+
|
7
|
+
require "jfm"
|
8
|
+
|
9
|
+
module Jfm
|
10
|
+
module CLI
|
11
|
+
class Command < Dry::CLI::Command
|
12
|
+
def self.inherited(klass)
|
13
|
+
super
|
14
|
+
|
15
|
+
klass.option :dir, aliases: ["-d"], default: ".", desc: "Path to your Jekyll directory. Assumes the current directory."
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
module Commands
|
20
|
+
extend Dry::CLI::Registry
|
21
|
+
|
22
|
+
class Version < Jfm::CLI::Command
|
23
|
+
desc "Print version"
|
24
|
+
|
25
|
+
def call(*)
|
26
|
+
puts Jfm::VERSION
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
class Find < Jfm::CLI::Command
|
31
|
+
desc "Search for files with specific frontmatter. Outputs a list of filenames."
|
32
|
+
|
33
|
+
argument :queries, type: :array, required: true, desc: "Query/queries to match"
|
34
|
+
|
35
|
+
example [
|
36
|
+
%q("layout" # Finds all posts that have a "layout" value set in their frontmatter),
|
37
|
+
%q("layout: post" # Finds all posts whose "layout" value is set to "post"),
|
38
|
+
%q("layout: ~post" # Finds all posts whose "layout" value is *not* set to "post")
|
39
|
+
]
|
40
|
+
|
41
|
+
def call(dir:, queries: [], **)
|
42
|
+
site = Site.new(dir)
|
43
|
+
|
44
|
+
posts = site.posts.select do |post|
|
45
|
+
queries.all? { |q| post.match?(q) }
|
46
|
+
end
|
47
|
+
|
48
|
+
posts.each do |post|
|
49
|
+
puts post.filename
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
class Edit < Jfm::CLI::Command
|
55
|
+
desc "Edit the frontmatter for a set of files"
|
56
|
+
|
57
|
+
argument :values, type: :array, require: true, desc: "Values to add/edit"
|
58
|
+
|
59
|
+
example [
|
60
|
+
%q("foo: bar" # Sets the value of the "foo" post variable to "bar")
|
61
|
+
]
|
62
|
+
|
63
|
+
def call(dir:, values: [], **)
|
64
|
+
posts = $stdin.each_line.map(&:chomp).map { |f| Post.new(f) }
|
65
|
+
if posts.empty?
|
66
|
+
warn "No files specified"
|
67
|
+
abort
|
68
|
+
end
|
69
|
+
|
70
|
+
posts.each do |post|
|
71
|
+
frontmatter = post.frontmatter
|
72
|
+
values.each do |value|
|
73
|
+
key, value = value.split(":").map(&:strip)
|
74
|
+
frontmatter[key] = value
|
75
|
+
end
|
76
|
+
post.frontmatter = frontmatter
|
77
|
+
post.save
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
register "version", Version, aliases: ["v", "-v", "--version"]
|
83
|
+
register "find", Find, aliases: ["f"]
|
84
|
+
register "edit", Edit, aliases: ["e"]
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
Dry::CLI.new(Jfm::CLI::Commands).call
|
data/jfm.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require_relative 'lib/jfm/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "jfm"
|
5
|
+
spec.version = Jfm::VERSION
|
6
|
+
spec.authors = ["Rob Miller"]
|
7
|
+
spec.email = ["r@robm.me.uk"]
|
8
|
+
|
9
|
+
spec.summary = "A command-line tool for working with Jekyll frontmatter."
|
10
|
+
spec.homepage = "https://github.com/robmiller/jfm"
|
11
|
+
spec.license = "MIT"
|
12
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
13
|
+
|
14
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
15
|
+
spec.metadata["source_code_uri"] = "https://github.com/robmiller/jfm"
|
16
|
+
|
17
|
+
spec.add_runtime_dependency "dry-cli", "~> 0.6.0"
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
27
|
+
end
|
data/lib/jfm.rb
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
require "pathname"
|
2
|
+
require "yaml"
|
3
|
+
|
4
|
+
require "jfm/version"
|
5
|
+
|
6
|
+
module Jfm
|
7
|
+
class Error < StandardError; end
|
8
|
+
|
9
|
+
class Site
|
10
|
+
def initialize(dir)
|
11
|
+
@working_dir = Pathname(dir)
|
12
|
+
end
|
13
|
+
|
14
|
+
def posts
|
15
|
+
post_files.map { |file| Post.new(file) }
|
16
|
+
end
|
17
|
+
|
18
|
+
private
|
19
|
+
|
20
|
+
def post_files
|
21
|
+
Dir[@working_dir + "_posts" + "*"]
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
class Post
|
26
|
+
attr_reader :filename
|
27
|
+
|
28
|
+
def initialize(filename)
|
29
|
+
@filename = filename
|
30
|
+
end
|
31
|
+
|
32
|
+
def frontmatter
|
33
|
+
@frontmatter ||= YAML.load(raw_frontmatter)
|
34
|
+
end
|
35
|
+
|
36
|
+
def frontmatter=(new_frontmatter)
|
37
|
+
@frontmatter = new_frontmatter
|
38
|
+
end
|
39
|
+
|
40
|
+
def match?(query)
|
41
|
+
case query
|
42
|
+
when /(.+?):\s*~(.+)/
|
43
|
+
frontmatter[$1] != $2
|
44
|
+
when /(.+?):\s*(.+)/
|
45
|
+
frontmatter[$1] == $2
|
46
|
+
else
|
47
|
+
frontmatter.has_key?(query)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
def save
|
52
|
+
backmatter = content.lines.drop_while { |l| l.chomp == "---" }.drop_while { |l| l.chomp != "---" }.drop(1).join
|
53
|
+
File.open(filename, "w") do |file|
|
54
|
+
file.write YAML::dump(frontmatter)
|
55
|
+
file.puts "---"
|
56
|
+
file.write backmatter
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
private
|
61
|
+
|
62
|
+
def content
|
63
|
+
@content ||= File.read(filename)
|
64
|
+
end
|
65
|
+
|
66
|
+
def raw_frontmatter
|
67
|
+
content.lines.drop_while { |l| l.chomp == "---" }.take_while { |l| l.chomp != "---" }.join
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
data/lib/jfm/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jfm
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rob Miller
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-12-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: dry-cli
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.6.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.6.0
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
- r@robm.me.uk
|
30
|
+
executables:
|
31
|
+
- jfm
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- ".gitignore"
|
36
|
+
- ".rspec"
|
37
|
+
- ".travis.yml"
|
38
|
+
- CODE_OF_CONDUCT.md
|
39
|
+
- Gemfile
|
40
|
+
- Gemfile.lock
|
41
|
+
- LICENSE.txt
|
42
|
+
- README.md
|
43
|
+
- Rakefile
|
44
|
+
- bin/console
|
45
|
+
- bin/setup
|
46
|
+
- exe/jfm
|
47
|
+
- jfm.gemspec
|
48
|
+
- lib/jfm.rb
|
49
|
+
- lib/jfm/version.rb
|
50
|
+
homepage: https://github.com/robmiller/jfm
|
51
|
+
licenses:
|
52
|
+
- MIT
|
53
|
+
metadata:
|
54
|
+
homepage_uri: https://github.com/robmiller/jfm
|
55
|
+
source_code_uri: https://github.com/robmiller/jfm
|
56
|
+
post_install_message:
|
57
|
+
rdoc_options: []
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 2.3.0
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
requirements: []
|
71
|
+
rubygems_version: 3.1.2
|
72
|
+
signing_key:
|
73
|
+
specification_version: 4
|
74
|
+
summary: A command-line tool for working with Jekyll frontmatter.
|
75
|
+
test_files: []
|