hayde 0.1.4 → 0.1.5

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 (4) hide show
  1. data/VERSION +1 -1
  2. data/hayde.gemspec +1 -1
  3. data/lib/hayde/generator.rb +0 -3
  4. metadata +3 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.4
1
+ 0.1.5
data/hayde.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{hayde}
8
- s.version = "0.1.4"
8
+ s.version = "0.1.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Roman Zaharenkov"]
@@ -90,7 +90,6 @@ module Hayde
90
90
  end
91
91
 
92
92
  def copy_assets
93
- #FileUtils.cp(Dir.glob(File.join(assets_dir, '**', '*')).reject {|file| file !~ /(css|js|png|gif)$/ }, output_dir)
94
93
  copy(assets_dir, output_dir, /\.$|\.svn/)
95
94
  end
96
95
 
@@ -100,8 +99,6 @@ module Hayde
100
99
 
101
100
  source_file = File.join(source, file)
102
101
  destination_file = File.join(destination, file)
103
-
104
- puts "#{source_file} --> #{destination_file}"
105
102
 
106
103
  if File.directory?(source_file)
107
104
  FileUtils.mkdir(destination_file) if !File.directory?(destination_file)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hayde
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 4
10
- version: 0.1.4
9
+ - 5
10
+ version: 0.1.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Roman Zaharenkov