provideal-plugin-utils 0.1.2 → 0.1.3
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/MIT-LICENSE +1 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/provideal_plugin_utils.rb +2 -3
- data/provideal-plugin-utils.gemspec +5 -5
- data/{init.rb → rails/init.rb} +0 -0
- metadata +3 -3
data/MIT-LICENSE
CHANGED
data/Rakefile
CHANGED
|
@@ -12,5 +12,5 @@ begin
|
|
|
12
12
|
gemspec.authors = ["René Sprotte"]
|
|
13
13
|
end
|
|
14
14
|
rescue LoadError
|
|
15
|
-
puts "Jeweler not available. Install it with: sudo gem install
|
|
15
|
+
puts "Jeweler not available. Install it with: sudo gem install jeweler"
|
|
16
16
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
|
@@ -32,12 +32,11 @@ module Provideal
|
|
|
32
32
|
|
|
33
33
|
# Only install if the target path does not exists
|
|
34
34
|
unless File.exists?(target_path)
|
|
35
|
+
puts "Installing assets for plugin #{plugin_name} from #{source_path} into #{target_path}."
|
|
35
36
|
File.symlink(source_path, target_path)
|
|
36
|
-
else
|
|
37
|
-
puts "Info: Assets for plugin #{plugin_name} exists. Skipping installation."
|
|
38
37
|
end
|
|
39
38
|
end
|
|
40
|
-
|
|
39
|
+
|
|
41
40
|
#
|
|
42
41
|
# Enables Rails extensions
|
|
43
42
|
#
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{provideal-plugin-utils}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = ["
|
|
12
|
-
s.date = %q{
|
|
11
|
+
s.authors = ["René Sprotte"]
|
|
12
|
+
s.date = %q{2010-01-05}
|
|
13
13
|
s.email = %q{info@provideal.net}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"README"
|
|
@@ -20,10 +20,10 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
"README",
|
|
21
21
|
"Rakefile",
|
|
22
22
|
"VERSION",
|
|
23
|
-
"init.rb",
|
|
24
23
|
"lib/provideal_plugin_utils.rb",
|
|
25
24
|
"lib/provideal_plugin_utils/asset_tag_helper.rb",
|
|
26
|
-
"provideal-plugin-utils.gemspec"
|
|
25
|
+
"provideal-plugin-utils.gemspec",
|
|
26
|
+
"rails/init.rb"
|
|
27
27
|
]
|
|
28
28
|
s.homepage = %q{http://github.com/provideal/provideal-plugin-utils/}
|
|
29
29
|
s.rdoc_options = ["--charset=UTF-8"]
|
data/{init.rb → rails/init.rb}
RENAMED
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: provideal-plugin-utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "Ren\xC3\xA9 Sprotte"
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2010-01-05 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -27,10 +27,10 @@ files:
|
|
|
27
27
|
- README
|
|
28
28
|
- Rakefile
|
|
29
29
|
- VERSION
|
|
30
|
-
- init.rb
|
|
31
30
|
- lib/provideal_plugin_utils.rb
|
|
32
31
|
- lib/provideal_plugin_utils/asset_tag_helper.rb
|
|
33
32
|
- provideal-plugin-utils.gemspec
|
|
33
|
+
- rails/init.rb
|
|
34
34
|
has_rdoc: true
|
|
35
35
|
homepage: http://github.com/provideal/provideal-plugin-utils/
|
|
36
36
|
licenses: []
|