kisko-suits 0.2.2 → 0.3.0

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
- SHA1:
3
- metadata.gz: bca5121f773054ddae30e80e7ac5fc600e51dd0b
4
- data.tar.gz: 4d663b82ac1b9e51cd51654fa52ee653e9f46150
2
+ SHA256:
3
+ metadata.gz: 64311c554df4ff27cf625648dd7584ef813edac27927a18974da796e9adc66b7
4
+ data.tar.gz: e506f0a895b3a862ec043221357d981ec4bb0aaaa12c71d59b7135aaf960611e
5
5
  SHA512:
6
- metadata.gz: '069f74c8bc91e15021fcb55abda9aa6af79921e5800f285e5a2b876d9367918dc4c3aa01d82a54d447aae38466a238127451e0cca5d2285ac9111392d6124e17'
7
- data.tar.gz: a6b263b27355379ed9a31202ba32104bfd9261e44b5e789badb620125b9b5562436d0105bddcce4a682beda3009c454b969e4cd9ee0371fd7b20e8731080eccc
6
+ metadata.gz: 13be24948a51f1c543a8dc61d35a68937df17d4a47a306470c6d24c21ee791fc7a689b69505c83210eb70a03fb8c717c15ef5cb699f940129a6697bc7652be10
7
+ data.tar.gz: d4a7c0fa3d6a2d7dbf85128db80ec7111bfad2ccc9b798dd1d56f8aad140eedb2c947ab37e704e4bce31ee3b48e2b2433b9291f6935f45faecb33564956a4f62
@@ -0,0 +1,4 @@
1
+ $$my_variable = Variable content
2
+ $$another_variable= More $$my_variable
3
+
4
+ Normal content $$another_variable
@@ -0,0 +1,2 @@
1
+
2
+ Normal content More Variable content
@@ -16,7 +16,7 @@ module KiskoSuits
16
16
  @included_filenames.clear
17
17
  @variables.clear
18
18
 
19
- abort "Suits file '#{path}' not found" unless File.exists?(path)
19
+ abort "Suits file '#{path}' not found" unless File.exist?(path)
20
20
 
21
21
  open_output_file do |output|
22
22
  File.foreach(path).each do |line|
@@ -56,7 +56,7 @@ module KiskoSuits
56
56
  end
57
57
 
58
58
  def include_file(included_path)
59
- if File.exists?(included_path)
59
+ if File.exist?(included_path)
60
60
  @included_filenames << included_path
61
61
 
62
62
  File.foreach(included_path).map { |included_line|
@@ -1,3 +1,3 @@
1
1
  module KiskoSuits
2
- VERSION = "0.2.2"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kisko-suits
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antti Akonniemi
8
- autorequire:
9
- bindir: bin
8
+ autorequire:
9
+ bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-23 00:00:00.000000000 Z
11
+ date: 2024-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: filewatcher
@@ -38,6 +38,34 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: 3.2.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 13.2.1
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 13.2.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: gem-release
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 2.2.2
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 2.2.2
41
69
  description: This app was meant to compile markdown partials as one document for our
42
70
  sales team using Deckset for Mac
43
71
  email:
@@ -48,7 +76,6 @@ extensions: []
48
76
  extra_rdoc_files: []
49
77
  files:
50
78
  - README.md
51
- - bin/kisko-suits
52
79
  - data/fail.md.suits
53
80
  - data/folder/proot.md
54
81
  - data/folder/what.md
@@ -56,8 +83,11 @@ files:
56
83
  - data/preso.md_proper
57
84
  - data/preso_with_variables.md.suits
58
85
  - data/preso_with_variables.md_proper
86
+ - data/preso_with_variables_within_variables.md.suits
87
+ - data/preso_with_variables_within_variables.md_proper
59
88
  - data/short_test.md
60
89
  - data/test.md
90
+ - exe/kisko-suits
61
91
  - lib/kisko-suits.rb
62
92
  - lib/kisko-suits/application.rb
63
93
  - lib/kisko-suits/compiler.rb
@@ -67,7 +97,7 @@ homepage: http://github.com/kiskolabs/kisko-suits
67
97
  licenses:
68
98
  - MIT
69
99
  metadata: {}
70
- post_install_message:
100
+ post_install_message:
71
101
  rdoc_options: []
72
102
  require_paths:
73
103
  - lib
@@ -82,9 +112,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
112
  - !ruby/object:Gem::Version
83
113
  version: 1.3.6
84
114
  requirements: []
85
- rubyforge_project: kisko-suits
86
- rubygems_version: 2.6.13
87
- signing_key:
115
+ rubygems_version: 3.5.16
116
+ signing_key:
88
117
  specification_version: 4
89
118
  summary: Application to compile files as one
90
119
  test_files: []
File without changes