compass-jquery-plugin 0.2.2.4 → 0.2.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/.document +5 -0
- data/.gitignore +22 -0
- data/.loadpath +5 -0
- data/.project +17 -0
- data/README.textile +16 -0
- data/Rakefile +19 -3
- data/VERSION.yml +4 -0
- data/compass-jquery-plugin.gemspec +720 -0
- data/gem_tasks/calendar.rake +76 -0
- data/gem_tasks/dynatree.rake +77 -0
- data/gem_tasks/jqgrid.rake +109 -0
- data/gem_tasks/jrails.rake +336 -0
- data/gem_tasks/rubygems.rake +3 -0
- data/gem_tasks/secret_sauce.rake +64 -0
- data/lib/jquery.rb +6 -1
- metadata +55 -45
- data/lib/jquery/rubygems.rake +0 -41
- data/lib/jquery/version.rb +0 -13
data/lib/jquery/rubygems.rake
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
spec = Gem::Specification.new do |s|
|
2
|
-
s.name = "compass-jquery-plugin"
|
3
|
-
s.version = CompassJquery::VERSION::STRING
|
4
|
-
s.authors = ["Kosmas Schuetz", "David Turnbull"]
|
5
|
-
s.email = "kosmas.schuetz@gmx.com"
|
6
|
-
s.homepage = "http://github.com/kosmas58/compass-jquery-plugin"
|
7
|
-
s.summary = "Integrates jRails, jQuery, jQuery UI and Themes, jqGrid and more into Compass Sass framework."
|
8
|
-
s.description = s.summary
|
9
|
-
#s.executables = ["jqgrid", "jquery-ui"]
|
10
|
-
s.files = %w[MIT-LICENSE Rakefile README.textile] + Dir["lib/**/*"] + Dir["templates/**/*"]
|
11
|
-
s.add_dependency("chriseppstein-compass", [">= 0.8.16"])
|
12
|
-
end
|
13
|
-
|
14
|
-
Rake::GemPackageTask.new(spec) do |package|
|
15
|
-
package.gem_spec = spec
|
16
|
-
end
|
17
|
-
|
18
|
-
desc 'Show information about the gem.'
|
19
|
-
task :gemspec do
|
20
|
-
File.open("compass-jquery-plugin.gemspec", 'w') do |f|
|
21
|
-
f.write spec.to_ruby
|
22
|
-
end
|
23
|
-
puts "Generated: compass-jquery-plugin.gemspec"
|
24
|
-
end
|
25
|
-
|
26
|
-
desc 'Build all templates.'
|
27
|
-
task :build_templates => ["jrails:build_templates", "jqgrid:build_templates", "secret_sauce:build_templates"] do
|
28
|
-
|
29
|
-
end
|
30
|
-
|
31
|
-
CLEAN.include ["pkg", "*.gem", "doc", "ri", "coverage", "templates"]
|
32
|
-
|
33
|
-
desc 'Install the package as a gem.'
|
34
|
-
task :gem_install => [:clean, :build_templates, :package] do
|
35
|
-
gem = Dir['pkg/*.gem'].first
|
36
|
-
if RUBY_PLATFORM =~ /win/
|
37
|
-
system "gem install --no-ri --no-rdoc --local #{gem}"
|
38
|
-
else
|
39
|
-
sh "sudo gem install --no-ri --no-rdoc --local #{gem}"
|
40
|
-
end
|
41
|
-
end
|
data/lib/jquery/version.rb
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
module CompassJqueryPlugin#:nodoc:
|
2
|
-
|
3
|
-
class VERSION #:nodoc:
|
4
|
-
|
5
|
-
PATCH = 4 # Set to nil for official release
|
6
|
-
TINY = 2
|
7
|
-
MINOR = 2
|
8
|
-
MAJOR = 0
|
9
|
-
|
10
|
-
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
|
11
|
-
STABLE_STRING = [MAJOR, MINOR, TINY].join('.')
|
12
|
-
end
|
13
|
-
end
|