liquid_tag_with_params 0.0.1 → 0.0.2

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: 86c51173d39d8405318c75ee215ce6ae3259627b
4
- data.tar.gz: 776e631917a9f5459c397c2dc5fb161e7a253072
3
+ metadata.gz: ca5747bea28fc86c5accc7ab752b2b9ef106cead
4
+ data.tar.gz: 53b49b6ada98f8dd4ffa59efe2526aac17b47fbd
5
5
  SHA512:
6
- metadata.gz: 06e4b41cd6c835f5391bb43edacba9d1a11793c30ad72be8686f032b7d45a9da0cd50bfede6bbdb27a01ed9e0c947c120e202a3b667fce4e146ed44bbb5b4785
7
- data.tar.gz: 7b79a805b189812e96083f233b4ef208e94eed8ff32b1d26ef0d677339eb772bab1a92412ab8b8dcd9dbfae91183241b66e251e540836addd55a4d3130c0bca0
6
+ metadata.gz: a5a4b22718eb3a49d228e34f8c176fcd06d423dbcac94bfd4a2ffee9d65ca67b4697ebfeb26e1ccc5adf0f898af19ad69416b3889481ef598057f2b2bdb2f500
7
+ data.tar.gz: af8883b3b9be338744eeab7fa25caf0e5a225ae32a1dd5413a4226229f2b9492840fc683e517b632d79031c4a9c48a89884f0e1d2e15558316adf309d6f0e244
@@ -1,5 +1,5 @@
1
1
  require 'liquid'
2
- require_relative 'tag_with_params/parser'
2
+ require_relative 'liquid_tag_with_params/parser'
3
3
 
4
4
  class Liquid::TagWithParams < Liquid::Tag
5
5
 
@@ -1,3 +1,3 @@
1
1
  module LiquidTagWithParams
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  $:.unshift File.expand_path('../lib', __FILE__)
2
- require 'liquid/tag_with_params/version'
2
+ require 'liquid_tag_with_params/version'
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "liquid_tag_with_params"
@@ -1,6 +1,6 @@
1
- require_relative '../../test_helper'
1
+ require_relative '../test_helper'
2
2
 
3
- class Liquid::TagWithParams::ParserTest < MiniTest::Test
3
+ class LiquidTagWithParams::ParserTest < MiniTest::Test
4
4
 
5
5
  def test_tokenizer
6
6
  tokens = LiquidTagWithParams::Parser.tokenize("param")
@@ -1,6 +1,6 @@
1
- require_relative '../test_helper'
1
+ require_relative 'test_helper'
2
2
 
3
- class Liquid::TagWithParamsTest < MiniTest::Test
3
+ class LiquidTagWithParamsTest < MiniTest::Test
4
4
  include Liquid
5
5
 
6
6
  def test_initialization
data/test/test_helper.rb CHANGED
@@ -1,7 +1,6 @@
1
1
  require 'bundler/setup'
2
2
  require 'minitest/autorun'
3
- require 'liquid'
4
- require 'liquid/tag_with_params'
3
+ require 'liquid_tag_with_params'
5
4
 
6
5
  class MiniTest::Test
7
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: liquid_tag_with_params
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleg Khabarov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-14 00:00:00.000000000 Z
11
+ date: 2017-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: liquid
@@ -36,12 +36,12 @@ files:
36
36
  - LICENSE
37
37
  - README.md
38
38
  - Rakefile
39
- - lib/liquid/tag_with_params.rb
40
- - lib/liquid/tag_with_params/parser.rb
41
- - lib/liquid/tag_with_params/version.rb
39
+ - lib/liquid_tag_with_params.rb
40
+ - lib/liquid_tag_with_params/parser.rb
41
+ - lib/liquid_tag_with_params/version.rb
42
42
  - liquid_tag_with_params.gemspec
43
- - test/liquid/tag_with_params/parser_test.rb
44
- - test/liquid/tag_with_params_test.rb
43
+ - test/liquid_tag_with_params/parser_test.rb
44
+ - test/liquid_tag_with_params_test.rb
45
45
  - test/test_helper.rb
46
46
  homepage: http://github.com/comfy/liquid_tag_with_params
47
47
  licenses: []