compass-jquery-plugin 0.2.4 → 0.2.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +4 -3
- data/compass-jquery-plugin.gemspec +2 -2
- data/lib/jquery.rb +5 -1
- metadata +2 -2
data/VERSION.yml
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{compass-jquery-plugin}
|
8
|
-
s.version = "0.2.4"
|
8
|
+
s.version = "0.2.4.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Kosmas Schuetz"]
|
12
|
-
s.date = %q{2009-11-
|
12
|
+
s.date = %q{2009-11-08}
|
13
13
|
s.description = %q{A compass plugin that integrates jRails, jQuery, jQuery UI and Themes, jqGrid and more into the Compass Sass framework.}
|
14
14
|
s.email = %q{kosmas.schuetz@gmx.com}
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/jquery.rb
CHANGED
@@ -2,5 +2,9 @@ require File.join(File.dirname(__FILE__), 'jquery', 'compass_plugin')
|
|
2
2
|
|
3
3
|
module CompassJqueryPlugin
|
4
4
|
version = YAML.load_file(File.dirname(__FILE__) + '/../VERSION.yml')
|
5
|
-
|
5
|
+
if version[:commit]
|
6
|
+
VERSION = "#{version[:major]}.#{version[:minor]}.#{version[:patch]}.#{version[:commit]}"
|
7
|
+
else
|
8
|
+
VERSION = "#{version[:major]}.#{version[:minor]}.#{version[:patch]}"
|
9
|
+
end
|
6
10
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-jquery-plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.4
|
4
|
+
version: 0.2.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kosmas Schuetz
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-11-
|
12
|
+
date: 2009-11-08 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|