ltx 1.0.0 → 1.0.1

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -0
  3. data/lib/ltx.rb +1 -0
  4. data/lib/ltx/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 72b57a2490f51b68108c3d6221a246d80922cbe0
4
- data.tar.gz: f56953d780dec504532e9fba584e7fe0b2542701
3
+ metadata.gz: 6612431b94aa2c7520a9b016b6f87f5855a576d9
4
+ data.tar.gz: a5da029a9b0c248db7e3548f276b823a7c7f6f70
5
5
  SHA512:
6
- metadata.gz: 25ed0b18b366f30b3e45e68cc2f882c821ea50b9a304fa0d2d3be041ac2a0f04c95725481da8fd8516b83fa8e1f91fecfc7bf7d36f516cfa42ec8132aa912d22
7
- data.tar.gz: 93bc013610df2f409bd2eda3954e2fc928acf0c4117bd0b41653d90d76f844feb61fb0cb2590cfdd2b29fc62aafe79a6f386fde4f3b1ba03f3bf1fb53101cd2c
6
+ metadata.gz: 6ff9678bbb77bd549d10e742e5f2b387387761057a69d70a0c27afebfe5892e24da955e814b1304fad9778313bcaa214d75e67b6e7d49fdbf300199c427743a2
7
+ data.tar.gz: 670b5b5cd7265fba212f6a70c4f8a8bbcf687eb4fd3efd98fb180c6a723f70bfb829b3cbf71a428686e75fa43086c5928268e7a24100b87fd0a4ca5a9bed8986
data/README.md CHANGED
@@ -1,5 +1,11 @@
1
+ [gem]: https://rubygems.org/gems/ltx
2
+ [gemnasium]: https://gemnasium.com/zaidan/ltx
3
+
1
4
  # ltx - LaTeX Project Build Tool
2
5
 
6
+ [![Gem Version](https://badge.fury.io/rb/ltx.svg)][gem]
7
+ [![Dependency Status](https://gemnasium.com/zaidan/ltx.svg)][gemnasium]
8
+
3
9
  This project provides the ltx command. It reads your `project.yml` and
4
10
  compiles your LaTeX files to a tmp folder in your project subdirectory. This
5
11
  does not mess your project with temporary files and simplifies the clean up
data/lib/ltx.rb CHANGED
@@ -4,5 +4,6 @@ require 'tmpdir'
4
4
  require 'yaml'
5
5
  require 'fileutils'
6
6
 
7
+ require 'ltx/version'
7
8
  require 'ltx/config'
8
9
  require 'ltx/build'
data/lib/ltx/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module LTX
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.1'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ltx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firas Zaidan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-19 00:00:00.000000000 Z
11
+ date: 2017-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: devtools