iconoclast 0.1.1 → 0.1.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/VERSION +1 -1
- data/iconoclast.gemspec +2 -2
- data/lib/iconoclast.rb +2 -3
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/iconoclast.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{iconoclast}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Eric Dennis"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2010-01-22}
|
|
13
13
|
s.description = %q{Rails icon library and helpers}
|
|
14
14
|
s.email = %q{e@wb.com}
|
|
15
15
|
s.executables = ["iconify", "test.rb"]
|
data/lib/iconoclast.rb
CHANGED
|
@@ -16,7 +16,6 @@ unless defined? Iconoclast
|
|
|
16
16
|
case arg
|
|
17
17
|
when String, Symbol
|
|
18
18
|
file_name = 'iconoclast/' + arg.to_s.underscore
|
|
19
|
-
print "setting up helper for file_name = #{file_name}"
|
|
20
19
|
helper(file_name)
|
|
21
20
|
else
|
|
22
21
|
helper(arg, &block)
|
|
@@ -102,7 +101,7 @@ unless defined? Iconoclast
|
|
|
102
101
|
search_me = ::File.expand_path(
|
|
103
102
|
::File.join(::File.dirname(fname), dir, '**', '*.rb'))
|
|
104
103
|
|
|
105
|
-
Dir.glob(search_me).sort.each {|rb|
|
|
104
|
+
Dir.glob(search_me).sort.each {|rb| require rb}
|
|
106
105
|
end
|
|
107
106
|
|
|
108
107
|
end
|
|
@@ -114,4 +113,4 @@ unless defined? Iconoclast
|
|
|
114
113
|
# Dir.glob(File.join(Iconoclast.libpath, 'iconoclast', '*_helper.rb')).each { |helper| require helper }
|
|
115
114
|
# Two
|
|
116
115
|
Iconoclast.require_all_libs_relative_to __FILE__
|
|
117
|
-
end # unless defined?
|
|
116
|
+
end # unless defined?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: iconoclast
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Dennis
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2010-01-22 00:00:00 -08:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|