japr 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 87d28ef23acc5a0f92c4cd7d583b6d2fce8c8704
4
- data.tar.gz: 5b09118929232fd3f5c18409c702781f67a39d46
3
+ metadata.gz: d8399905be227d867b7c97c93d2e93a799370edc
4
+ data.tar.gz: 70edcd27fb26e4bca05c307a7ec3b509527e8316
5
5
  SHA512:
6
- metadata.gz: 95e903e0e43c4491dcde84b0a463c668e6ec4085523f9064e7e76eabafef913e8c312c5188a1dbb72396595e33f440adb92f85d4aa40a16e5e1b9e265f9ee89b
7
- data.tar.gz: 81e8bbbc83d1f671906f3c4861c4a16645fac86f54347a51277db7af63ec070606ba35d193d918a4a509472af63e8b0e5fce0be63c2b40a65357b9cdbfc2abe9
6
+ metadata.gz: 5f2166720692d1f29c17c09292a5d6c5af4006ca9372138dab80bd465bb79b8ce81424478170de45e18cd0cf5196dc0e853bfbe1939693cfcd34b54f1d9f57e5
7
+ data.tar.gz: 5b9cc66015a6074ea1264b3e9030dadac7cec3f579285d5944a46e5cc8b2e0e3956dfffda2faf000fcef95fe5cf4f184f3df9f3d1fa61b2911cab19a6e78f334
data/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ # Changelog
2
+
3
+ ## 0.4.1 (2017-12-08)
4
+
5
+ * [#6] __Test coverage increased to 100%__
6
+ * [#35] __Updated rake dependency to 12.0__
7
+ * [#34] __Fixed or mitigated all Rubocop offenses__
8
+ * [#31] __Documented modules and classes__
9
+ * [#29] Various README updates
10
+ * [#28] Gemspec file updates (version dependencies and typos)
11
+ * [#31] Fix random coverage jumps
12
+ * [#33] Rescue StandardError instead of Exception
13
+ * Removed CodeClimate integration
14
+
15
+ ## 0.4 (2017-12-03)
16
+
17
+ * [#20] Support Jekyll 3.5, Liquid 4.0
18
+ * [#25] Permit root level output of asset files
19
+ * Fix and refactor to eliminate Rubocop offenses
data/README.md CHANGED
@@ -1,10 +1,9 @@
1
1
  # JAPR (Jekyll Asset Pipeline Reborn)
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/japr.png)](http://badge.fury.io/rb/japr)
4
- [![Build Status](https://secure.travis-ci.org/janosrusiczki/japr.png)](https://travis-ci.org/janosrusiczki/japr)
4
+ [![Build Status](https://travis-ci.org/janosrusiczki/japr.svg?branch=master)](https://travis-ci.org/janosrusiczki/japr)
5
5
  [![Coverage Status](https://coveralls.io/repos/janosrusiczki/japr/badge.png?branch=master)](https://coveralls.io/r/janosrusiczki/japr?branch=master)
6
6
  [![Dependency Status](https://gemnasium.com/janosrusiczki/japr.png)](https://gemnasium.com/janosrusiczki/japr)
7
- [![Code Climate](https://codeclimate.com/github/janosrusiczki/japr.png)](https://codeclimate.com/github/janosrusiczki/japr)
8
7
 
9
8
  JAPR is a powerful asset pipeline that automatically collects, converts and compresses / minifies your site's JavaScript and CSS assets when you compile your [Jekyll](http://jekyllrb.com/) site.
10
9
 
@@ -34,8 +33,8 @@ This project is a fork of [Jekyll Asset Pipeline](https://github.com/matthodan/j
34
33
  ## Features
35
34
 
36
35
  - Declarative dependency management via asset manifests
37
- - Asset preprocessing/conversion (supports [CoffeeScript](http://coffeescript.org/), [Sass / Scss](http://sass-lang.com/), [Less](http://lesscss.org/), [Erb](http://ruby-doc.org/stdlib-1.9.3/libdoc/erb/rdoc/ERB.html), etc.)
38
- - Asset compression (supports [YUI Compressor](http://developer.yahoo.com/yui/compressor/), [Closure Compiler](https://developers.google.com/closure/compiler/), etc.)
36
+ - Asset preprocessing/conversion (supports [CoffeeScript](http://coffeescript.org/), [Sass / Scss](http://sass-lang.com/), [Less](http://lesscss.org/), [Erb](http://ruby-doc.org/stdlib-2.2.0/libdoc/erb/rdoc/ERB.html), etc.)
37
+ - Asset compression (supports [YUI Compressor](http://yui.github.io/yuicompressor/), [Closure Compiler](https://developers.google.com/closure/compiler/), etc.)
39
38
  - Fingerprints bundled asset filenames with MD5 hashes for better browser caching
40
39
  - Automatic generation of HTML `link` and `script` tags that point to bundled assets
41
40
  - Integrates seamlessly into Jekyll's workflow, including auto site regeneration
@@ -61,7 +60,7 @@ JAPR is extremely easy to add to your Jekyll project and has no incremental depe
61
60
 
62
61
  If you are using [Bundler](http://gembundler.com/) to manage your project's gems, you can just add `japr` to your Gemfile and run `bundle install`.
63
62
 
64
- 2. Add a `_plugins` folder to your project if you do not already have one. Within the `_plugins` folder, add a file named `jekyll_asset_pipeline.rb` with the following require statement as its contents.
63
+ 2. Add a `_plugins` folder to your project if you do not already have one. Within the `_plugins` folder, add a file named `japr.rb` with the following require statement as its contents.
65
64
 
66
65
  ``` ruby
67
66
  require 'japr'
@@ -107,21 +106,21 @@ In the following example, we will add a preprocessor that converts CoffeeScript
107
106
 
108
107
  ### CoffeeScript
109
108
 
110
- 1. In the `jekyll_asset_pipeline.rb` file that we created in the [Getting Started](#getting-started) section, add the following code to the end of the file (i.e. after the `require` statement).
109
+ 1. In the `japr.rb` file that we created in the [Getting Started](#getting-started) section, add the following code to the end of the file (i.e. after the `require` statement).
111
110
 
112
111
  ``` ruby
113
112
  module JAPR
114
- class CoffeeScriptConverter < JAPR::Converter
115
- require 'coffee-script'
113
+ class CoffeeScriptConverter < JAPR::Converter
114
+ require 'coffee-script'
116
115
 
117
- def self.filetype
118
- '.coffee'
119
- end
116
+ def self.filetype
117
+ '.coffee'
118
+ end
120
119
 
121
- def convert
122
- return CoffeeScript.compile(@content)
123
- end
120
+ def convert
121
+ return CoffeeScript.compile(@content)
124
122
  end
123
+ end
125
124
  end
126
125
  ```
127
126
 
@@ -168,9 +167,9 @@ You can use the `@dirname` instance variable for this, which contains the path t
168
167
 
169
168
  ``` ruby
170
169
  ...
171
- def convert
172
- return Sass::Engine.new(@content, syntax: :scss, load_paths: [@dirname]).render
173
- end
170
+ def convert
171
+ return Sass::Engine.new(@content, syntax: :scss, load_paths: [@dirname]).render
172
+ end
174
173
  ...
175
174
  ```
176
175
 
@@ -198,9 +197,9 @@ As with the SASS convertor, you'll probably need to specify a base load path and
198
197
 
199
198
  ``` ruby
200
199
  ...
201
- def convert
202
- return Less::Parser.new(paths: [@dirname]).parse(@content).to_css
203
- end
200
+ def convert
201
+ return Less::Parser.new(paths: [@dirname]).parse(@content).to_css
202
+ end
204
203
  ...
205
204
  ```
206
205
 
@@ -218,7 +217,7 @@ In the following example, we will add a compressor that uses Yahoo's YUI Compres
218
217
 
219
218
  ### Yahoo's YUI Compressor
220
219
 
221
- 1. In the `jekyll_asset_pipeline.rb` file that we created in the [Getting Started](#getting-started) section, add the following code to the end of the file (i.e. after the `require` statement).
220
+ 1. In the `japr.rb` file that we created in the [Getting Started](#getting-started) section, add the following code to the end of the file (i.e. after the `require` statement).
222
221
 
223
222
  ``` ruby
224
223
  module JAPR
@@ -288,7 +287,7 @@ When JAPR creates a bundle, it returns an HTML tag that points to the bundle. Th
288
287
 
289
288
  In the following example, we will override the default CSS link tag by adding a custom template that produces a link tag with a `media` attribute.
290
289
 
291
- 1. In the `jekyll_asset_pipeline.rb` file that we created in the [Getting Started](#getting-started) section, add the following code.
290
+ 1. In the `japr.rb` file that we created in the [Getting Started](#getting-started) section, add the following code.
292
291
 
293
292
  ``` ruby
294
293
  module JAPR
@@ -298,7 +297,7 @@ In the following example, we will override the default CSS link tag by adding a
298
297
  end
299
298
 
300
299
  def html
301
- "<link href='/#{@path}/#{@filename}' rel='stylesheet'" \
300
+ "<link href='#{output_path}/#{@filename}' rel='stylesheet' " \
302
301
  "type='text/css' media='screen' />\n"
303
302
  end
304
303
  end
@@ -307,7 +306,7 @@ In the following example, we will override the default CSS link tag by adding a
307
306
 
308
307
  If you already added a compressor and/or a converter, you can include your template class alongside your compressor and/or converter within the same JAPR module.
309
308
 
310
- The “self.filetype” method defines the type of bundle a template will target (either `.js` or `.css`). The “html” method is where the magic happens. “@path” and `@filename` instance variables are available within the class and contain the path and filename of the generated bundle, respectively. The template should return a string that contains an HTML tag pointing to the generated bundle via an `html` method.
309
+ The “self.filetype” method defines the type of bundle a template will target (either `.js` or `.css`). The “html” method is where the magic happens. `output_path` is a helper method and `@filename` is an instance variable which are available within the class and contain the path and filename of the generated bundle, respectively. The template should return a string that contains an HTML tag pointing to the generated bundle via an `html` method.
311
310
 
312
311
  2. Run the `jekyll` command to compile your site.
313
312
 
@@ -341,7 +340,7 @@ Setting | Default | Description
341
340
 
342
341
  1. Octopress uses Bundler to manage your site's dependencies. You should add `gem japr` to your Gemfile and then run `bundle install` to install.
343
342
 
344
- 2. Instead of adding a `_plugins` folder, you should put `jekyll_asset_pipeline.rb` in the `plugins` folder included by default in the root of your Octopress site.
343
+ 2. Instead of adding a `_plugins` folder, you should put `japr.rb` in the `plugins` folder included by default in the root of your Octopress site.
345
344
 
346
345
  3. You should still store your assets in an Jekyll ignored folder (i.e. a folder that begins with an underscore `_`), but note that this folder should be located within the `source` folder of your Octopress site (e.g. `source/_assets`).
347
346
 
@@ -355,18 +354,20 @@ If you have any difficulties using JAPR with Octopress, please [open an issue](h
355
354
 
356
355
  You can contribute to the JAPR by submitting a pull request [via GitHub](https://github.com/janosrusiczki/japr). There are a few areas that need improvement:
357
356
 
358
- - __Tests, tests, tests.__ **This project is now almost fully tested.**
359
- - __Handle remote assets.__ Right now, JAPR does not provide any way to include remote assets in bundles unless you save them locally before generating your site. Moshen's [Jekyll Asset Bundler](https://github.com/moshen/jekyll-asset_bundler) allows you to include remote assets, which is pretty interesting. That said, it is generally better to keep remote assets separate so that they load asynchronously.
357
+ - __Tests, tests, tests.__ **This project is now fully tested.**
360
358
  - __Successive preprocessing.__ Currently you can only preprocess a file once. It would be better if you could run an asset through multiple preprocessors before it gets compressed and bundled. **As of v0.1.0, JAPR now supports successive preprocessing.**
359
+ - __Handle remote assets.__ Right now, JAPR does not provide any way to include remote assets in bundles unless you save them locally before generating your site. Moshen's [Jekyll Asset Bundler](https://github.com/moshen/jekyll-asset_bundler) allows you to include remote assets, which is pretty interesting. That said, it is generally better to keep remote assets separate so that they load asynchronously.
361
360
 
362
361
  If you have any ideas or you would like to see anything else improved please use the [issues section](https://github.com/janosrusiczki/japr/issues).
363
362
 
364
363
  ## Community
365
364
 
366
- - Here is a list of [sites that use JAPR](http://github.com/janosrusiczki/japr/wiki/Sites-that-use-JAPR). Feel free to add your site to the list if you want.
365
+ - Here is [GitHub's list of projects that use the gem](https://github.com/janosrusiczki/japr/network/dependents).
366
+ - Here is a currated list of [sites that use JAPR](http://github.com/janosrusiczki/japr/wiki/Sites-that-use-JAPR). Feel free to add your site to the list if you want.
367
367
 
368
368
  ## Credits
369
369
 
370
+ * [Matt Hodan](https://github.com/matthodan) for creating [Jekyll Asset Pipeline](https://github.com/matthodan/jekyll-asset-pipeline).
370
371
  * [Moshen](https://github.com/moshen/) for creating the [Jekyll Asset Bundler](https://github.com/moshen/jekyll-asset_bundler).
371
372
  * [Mojombo](https://github.com/mojombo) for creating [Jekyll](https://github.com/mojombo/jekyll) in the first place.
372
373
 
data/lib/japr.rb CHANGED
@@ -27,8 +27,8 @@ require 'japr/version'
27
27
  require 'japr/asset'
28
28
  require 'japr/converter'
29
29
  require 'japr/compressor'
30
- require 'japr/template'
31
30
  require 'japr/templates/template_helper'
31
+ require 'japr/template'
32
32
  require 'japr/templates/javascript_tag_template'
33
33
  require 'japr/templates/css_tag_template'
34
34
  require 'japr/pipeline'
data/lib/japr/asset.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  module JAPR
2
+ # Holds an asset (file)
2
3
  class Asset
3
4
  def initialize(content, filename, dirname = '.')
4
5
  @content = content
@@ -1,4 +1,6 @@
1
1
  module JAPR
2
+ # Base class for asset compressors
3
+ # See https://github.com/janosrusiczki/japr#asset-compression
2
4
  class Compressor
3
5
  extend JAPR::SubclassTracking
4
6
 
@@ -8,9 +10,7 @@ module JAPR
8
10
  end
9
11
 
10
12
  # Returns compressed content
11
- def compressed
12
- @compressed
13
- end
13
+ attr_reader :compressed
14
14
 
15
15
  # Filetype to process (e.g. '.js')
16
16
  def self.filetype
@@ -1,4 +1,6 @@
1
1
  module JAPR
2
+ # Base class for asset converters
3
+ # See https://github.com/janosrusiczki/japr#asset-preprocessing
2
4
  class Converter
3
5
  extend JAPR::SubclassTracking
4
6
 
@@ -9,9 +11,7 @@ module JAPR
9
11
  @converted = convert
10
12
  end
11
13
 
12
- def converted
13
- @converted
14
- end
14
+ attr_reader :converted
15
15
 
16
16
  # Filetype to process (e.g. '.coffee')
17
17
  def self.filetype
@@ -1,4 +1,6 @@
1
1
  module Jekyll
2
+ # Contains overrides for the needed Jekyll:Site methods
3
+ # The actual code is in JAPR::JekyllSiteExtensions
2
4
  class Site
3
5
  include JAPR::JekyllSiteExtensions
4
6
  end
@@ -1,4 +1,6 @@
1
1
  module JAPR
2
+ # Contains overrides for the needed Jekyll:Site methods
3
+ # Included in Jekyll::Site
2
4
  module JekyllSiteExtensions
3
5
  def self.included(base)
4
6
  base.class_eval do
@@ -1,4 +1,7 @@
1
1
  module JAPR
2
+ # This is a Liquid tag block extension
3
+ # See documentation here:
4
+ # https://github.com/Shopify/liquid/wiki/liquid-for-programmers#create-your-own-tag-blocks
2
5
  class AssetTag < ::Liquid::Block
3
6
  extend JAPR::LiquidBlockExtensions::ClassMethods
4
7
  include JAPR::LiquidBlockExtensions
@@ -1,4 +1,8 @@
1
+ # This comment is needed, otherwise Rubocop complains because of the
2
+ # register_tag below and a verbose comment is better than a :nodoc: :)
1
3
  module JAPR
4
+ # css_asset_tag Liquid block
5
+ # See JAPR::AssetTag and JAPR::LiquidBlockExtensions
2
6
  class CssAssetTag < JAPR::AssetTag
3
7
  def self.tag_name
4
8
  'css_asset_tag'
@@ -1,4 +1,8 @@
1
+ # This comment is needed, otherwise Rubocop complains because of the
2
+ # register_tag below and a verbose comment is better than a :nodoc: :)
1
3
  module JAPR
4
+ # javascript_asset_tag Liquid block
5
+ # See JAPR::AssetTag and JAPR::LiquidBlockExtensions
2
6
  class JavaScriptAssetTag < JAPR::AssetTag
3
7
  def self.tag_name
4
8
  'javascript_asset_tag'
@@ -1,5 +1,10 @@
1
1
  module JAPR
2
+ # Helper module used by JAPR::AssetTag as well as
3
+ # classed derived from it (Liquid tag block extensions)
4
+ # See documentation here:
5
+ # https://github.com/Shopify/liquid/wiki/liquid-for-programmers#create-your-own-tag-blocks
2
6
  module LiquidBlockExtensions
7
+ # Unsurprisingly, class methods
3
8
  module ClassMethods
4
9
  def output_type
5
10
  ''
@@ -1,4 +1,5 @@
1
1
  module JAPR
2
+ # Allows classes that extend this to return an array of their subclasses
2
3
  module SubclassTracking
3
4
  # Record subclasses of this class (this method is automatically called by
4
5
  # ruby)
data/lib/japr/pipeline.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  module JAPR
2
+ # The pipeline itself, the run method is where it all happens
2
3
  # rubocop:disable ClassLength
3
4
  class Pipeline
4
5
  class << self
@@ -9,14 +10,19 @@ module JAPR
9
10
  Digest::MD5.hexdigest(YAML.safe_load(manifest).map! do |path|
10
11
  "#{path}#{File.mtime(File.join(source, path)).to_i}"
11
12
  end.join.concat(options.to_s))
12
- rescue Exception => e
13
- puts "Failed to generate hash from provided manifest: #{e.message}"
14
- raise e
13
+ rescue StandardError => se
14
+ puts "Failed to generate hash from provided manifest: #{se.message}"
15
+ raise se
15
16
  end
16
17
  end
17
18
 
18
- # Run pipeline
19
+ # Run the pipeline
20
+ # This is called from JAPR::LiquidBlockExtensions.render or,
21
+ # to be more precise, from JAPR::CssAssetTag.render and
22
+ # JAPR::JavaScriptAssetTag.render
23
+ # rubocop:disable ParameterLists
19
24
  def run(manifest, prefix, source, destination, tag, type, config)
25
+ # rubocop:enable ParameterLists
20
26
  # Get hash for pipeline
21
27
  hash = hash(source, manifest, config)
22
28
 
@@ -27,12 +33,12 @@ module JAPR
27
33
  puts "Processing '#{tag}' manifest '#{prefix}'"
28
34
  pipeline = new(manifest, prefix, source, destination, type, config)
29
35
  process_pipeline(hash, pipeline)
30
- rescue Exception => e
36
+ rescue StandardError => se
31
37
  # Add exception to cache
32
- cache[hash] = e
38
+ cache[hash] = se
33
39
 
34
40
  # Re-raise the exception
35
- raise e
41
+ raise se
36
42
  end
37
43
  end
38
44
 
@@ -51,10 +57,6 @@ module JAPR
51
57
  config = DEFAULTS.merge(config)
52
58
  staging_path = File.join(source, config['staging_path'])
53
59
  FileUtils.rm_rf(staging_path)
54
- rescue Exception => e
55
- puts "Failed to remove staged assets: #{e.message}"
56
- # Re-raise the exception
57
- raise e
58
60
  end
59
61
 
60
62
  # Add prefix to output
@@ -79,7 +81,9 @@ module JAPR
79
81
  end
80
82
 
81
83
  # Initialize new pipeline
84
+ # rubocop:disable ParameterLists
82
85
  def initialize(manifest, prefix, source, destination, type, options = {})
86
+ # rubocop:enable ParameterLists
83
87
  @manifest = manifest
84
88
  @prefix = prefix
85
89
  @source = source
@@ -114,10 +118,10 @@ module JAPR
114
118
  File.dirname(full_path))
115
119
  end
116
120
  end
117
- rescue Exception => e
121
+ rescue StandardError => se
118
122
  puts 'Asset Pipeline: Failed to load assets from provided ' \
119
- "manifest: #{e.message}"
120
- raise e
123
+ "manifest: #{se.message}"
124
+ raise se
121
125
  end
122
126
 
123
127
  # Convert assets based on the file extension if converter is defined
@@ -152,10 +156,10 @@ module JAPR
152
156
  if File.extname(asset.filename) == ''
153
157
  asset.filename = "#{asset.filename}#{@type}"
154
158
  end
155
- rescue Exception => e
159
+ rescue StandardError => se
156
160
  puts "Asset Pipeline: Failed to convert '#{asset.filename}' " \
157
- "with '#{klass}': #{e.message}"
158
- raise e
161
+ "with '#{klass}': #{se.message}"
162
+ raise se
159
163
  end
160
164
 
161
165
  # Bundle multiple assets into a single asset
@@ -178,10 +182,10 @@ module JAPR
178
182
 
179
183
  begin
180
184
  asset.content = klass.new(asset.content).compressed
181
- rescue Exception => e
185
+ rescue StandardError => se
182
186
  puts "Asset Pipeline: Failed to compress '#{asset.filename}' " \
183
- "with '#{klass}': #{e.message}"
184
- raise e
187
+ "with '#{klass}': #{se.message}"
188
+ raise se
185
189
  end
186
190
  end
187
191
  end
@@ -219,10 +223,10 @@ module JAPR
219
223
  File.open(File.join(directory, asset.filename), 'w') do |file|
220
224
  file.write(asset.content)
221
225
  end
222
- rescue Exception => e
226
+ rescue StandardError => se
223
227
  puts "Asset Pipeline: Failed to save '#{asset.filename}' to " \
224
- "disk: #{e.message}"
225
- raise e
228
+ "disk: #{se.message}"
229
+ raise se
226
230
  end
227
231
  end
228
232
 
data/lib/japr/template.rb CHANGED
@@ -1,5 +1,8 @@
1
1
  module JAPR
2
+ # Base class for the tag templates
3
+ # See https://github.com/janosrusiczki/japr#templates
2
4
  class Template
5
+ include JAPR::TemplateHelper
3
6
  extend JAPR::SubclassTracking
4
7
 
5
8
  def initialize(path, filename)
@@ -1,8 +1,6 @@
1
1
  module JAPR
2
2
  # Default output for CSS assets
3
3
  class CssTagTemplate < JAPR::Template
4
- include JAPR::TemplateHelper
5
-
6
4
  def self.filetype
7
5
  '.css'
8
6
  end
@@ -1,8 +1,6 @@
1
1
  module JAPR
2
2
  # Default output for JavaScript assets
3
3
  class JavaScriptTagTemplate < JAPR::Template
4
- include JAPR::TemplateHelper
5
-
6
4
  def self.filetype
7
5
  '.js'
8
6
  end
@@ -1,4 +1,5 @@
1
1
  module JAPR
2
+ # Contains helper methods used by the tag template classes
2
3
  module TemplateHelper
3
4
  def output_path
4
5
  root_path? ? '' : "/#{@path}"
data/lib/japr/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module JAPR
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.4.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: japr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Hodan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-03 00:00:00.000000000 Z
11
+ date: 2017-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -58,23 +58,24 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '10.0'
61
+ version: '12.0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '10.0'
68
+ version: '12.0'
69
69
  description: |2
70
70
  Jekyll Asset Pipeline reborn adds asset preprocessing (CoffeeScript, Sass,
71
71
  Less, ERB, etc.) and asset compression / minification / gzip (Yahoo YUI
72
- Compressor, Google Closure Compiler, etc.) to Jekyll.'
72
+ Compressor, Google Closure Compiler, etc.) to Jekyll.
73
73
  email: japr@clicktrackheart.com
74
74
  executables: []
75
75
  extensions: []
76
76
  extra_rdoc_files: []
77
77
  files:
78
+ - CHANGELOG.md
78
79
  - LICENSE
79
80
  - README.md
80
81
  - lib/japr.rb
@@ -106,7 +107,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
106
107
  requirements:
107
108
  - - ">="
108
109
  - !ruby/object:Gem::Version
109
- version: 2.2.0
110
+ version: 2.1.0
110
111
  required_rubygems_version: !ruby/object:Gem::Requirement
111
112
  requirements:
112
113
  - - ">="