zeke-hamlize_views 0.0.2
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.
- data/LICENSE +20 -0
- data/README.textile +31 -0
- data/VERSION.yml +4 -0
- data/bin/hamlize_views +13 -0
- data/lib/hamlize_views.rb +27 -0
- data/spec/hamlize_views_spec.rb +7 -0
- data/spec/spec_helper.rb +9 -0
- metadata +70 -0
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Zeke Sikelianos
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.textile
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
h1. hamlize_views
|
2
|
+
|
3
|
+
This ruby gem uses the html2haml command line utility to convert rails' ERB view files to HAML.
|
4
|
+
|
5
|
+
h2. Installation
|
6
|
+
|
7
|
+
<pre><code>
|
8
|
+
gem sources -a http://gems.github.com
|
9
|
+
sudo gem install haml
|
10
|
+
sudo gem install zeke-hamlize_views
|
11
|
+
</code>
|
12
|
+
</pre>
|
13
|
+
|
14
|
+
h2. Usage
|
15
|
+
|
16
|
+
<pre><code>
|
17
|
+
$ cd /path/to/rails_app/
|
18
|
+
$ hamlize_views # Creates HAMLized versions of all app/views/**/*.erb files
|
19
|
+
$ hamlize_views app/views/my_model # Directory specific conversion
|
20
|
+
</code>
|
21
|
+
</pre>
|
22
|
+
|
23
|
+
h2. Todo
|
24
|
+
|
25
|
+
* Account for non-HTML Rails scaffold view stuff like > and "
|
26
|
+
* Provide a flag for deletion of the original .erb files
|
27
|
+
* Add an option to update references to converted files in rspec view tests
|
28
|
+
|
29
|
+
h2. Copyright
|
30
|
+
|
31
|
+
Copyright (c) 2009 Zeke Sikelianos. See LICENSE for details.
|
data/VERSION.yml
ADDED
data/bin/hamlize_views
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'rubygems'
|
3
|
+
require 'hamlize_views'
|
4
|
+
|
5
|
+
if ARGV.empty?
|
6
|
+
puts
|
7
|
+
puts "Usage: hamlize_views path/to/views/"
|
8
|
+
puts "A new hamlized '.html.haml' file will be created for each '.html.erb' file within the path."
|
9
|
+
puts
|
10
|
+
else
|
11
|
+
path = ARGV.shift
|
12
|
+
HamlizeViews.new(path).convert!
|
13
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
class HamlizeViews
|
2
|
+
|
3
|
+
def initialize(path)
|
4
|
+
@path = path
|
5
|
+
end
|
6
|
+
|
7
|
+
def convert!
|
8
|
+
files = Dir["#{@path}/**/*.html.erb"]
|
9
|
+
if files.empty?
|
10
|
+
puts "No erb files found in directory '#{@path}'"
|
11
|
+
return
|
12
|
+
else
|
13
|
+
puts
|
14
|
+
files.each do |file|
|
15
|
+
newfile = file.gsub(/\.erb$/, '.haml')
|
16
|
+
puts "#{file} --> #{newfile}"
|
17
|
+
`html2haml -r #{file} #{newfile}`
|
18
|
+
end
|
19
|
+
erb_files_path = "#{@path}/*.html.erb".gsub("//", "/")
|
20
|
+
puts
|
21
|
+
puts "Done! Be sure to check the new files for conversion flaws."
|
22
|
+
puts "To get rid of the old view files: rm #{erb_files_path}"
|
23
|
+
puts
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: zeke-hamlize_views
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Zeke Sikelianos
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-03-30 00:00:00 -07:00
|
13
|
+
default_executable: hamlize_views
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: haml
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description:
|
26
|
+
email: zeke@sikelianos.com
|
27
|
+
executables:
|
28
|
+
- hamlize_views
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- README.textile
|
33
|
+
- LICENSE
|
34
|
+
files:
|
35
|
+
- README.textile
|
36
|
+
- VERSION.yml
|
37
|
+
- bin/hamlize_views
|
38
|
+
- lib/hamlize_views.rb
|
39
|
+
- spec/hamlize_views_spec.rb
|
40
|
+
- spec/spec_helper.rb
|
41
|
+
- LICENSE
|
42
|
+
has_rdoc: true
|
43
|
+
homepage: http://github.com/zeke/hamlize_views
|
44
|
+
post_install_message:
|
45
|
+
rdoc_options:
|
46
|
+
- --inline-source
|
47
|
+
- --charset=UTF-8
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: "0"
|
55
|
+
version:
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: "0"
|
61
|
+
version:
|
62
|
+
requirements: []
|
63
|
+
|
64
|
+
rubyforge_project:
|
65
|
+
rubygems_version: 1.2.0
|
66
|
+
signing_key:
|
67
|
+
specification_version: 2
|
68
|
+
summary: This ruby gem uses the html2haml command line utility to convert ERB view files to HAML.
|
69
|
+
test_files: []
|
70
|
+
|