k4slide 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/example/example.md CHANGED
@@ -1,3 +1,4 @@
1
+
1
2
  # Markdown 2 Slide #
2
3
 
3
4
  * Shinichirow KAMITO
data/lib/k4slide/tasks.rb CHANGED
@@ -131,14 +131,13 @@ module K4slide
131
131
  example_dir = File.join(K4_ROOT, 'example')
132
132
  ext = 'md'
133
133
  filelist = FileList[File.join(example_dir, "*.#{ext}")]
134
- puts filelist
135
-
136
134
  filelist.each do |source_path|
137
135
  source_basename = File.basename(source_path)
138
136
  next if source_basename =~ /^_/
139
137
 
140
138
  source_basename = source_basename.gsub(/#{ext}$/, 'html')
141
139
  target_path = File.join(example_dir, source_basename)
140
+ # File.delete(target_path) if File.exists?(target_path)
142
141
 
143
142
  file(target_path) do |t, args|
144
143
  puts t.name
@@ -1,3 +1,3 @@
1
1
  module K4slide
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: k4slide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shinichirow Kamito
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-28 00:00:00.000000000 Z
11
+ date: 2013-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: k4compiler
@@ -115,9 +115,10 @@ files:
115
115
  - assets-src/javascripts/lib/k4/slide/controller.js
116
116
  - assets-src/javascripts/lib/k4/slide/slide.js
117
117
  - assets-src/stylesheets/k4slide.scss
118
- - assets-src/stylesheets/themes/_config.scss
119
- - assets-src/stylesheets/themes/_mixin.scss
118
+ - assets-src/stylesheets/lib/_mixin.scss
120
119
  - assets-src/stylesheets/themes/base.scss
120
+ - assets-src/stylesheets/transitions/_mixin.scss
121
+ - assets-src/stylesheets/transitions/slide.scss
121
122
  - assets/k4slide.css
122
123
  - assets/k4slide.js
123
124
  - example/example.html
@@ -1,4 +0,0 @@
1
- // config
2
-
3
- $font-color: #333;
4
- $border-color: #666;