grabjs 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -2,7 +2,6 @@ Manifest
2
2
  README
3
3
  Rakefile
4
4
  bin/grabjs
5
- grabjs.gemspec
6
5
  lib/formula/jquery.rb
7
6
  lib/grabjs.rb
8
7
  lib/grabjs/version.rb
data/Rakefile CHANGED
@@ -1,12 +1,13 @@
1
1
  require 'rubygems'
2
2
  require 'rake'
3
- require 'echoe'
4
3
 
5
- Echoe.new('grabjs', '0.0.2') do |p|
6
- p.description = "Grab popular javascript libraries."
7
- p.url = "https://github.com/mjhoy/grabjs"
8
- p.author = "Michael Hoy"
9
- p.email = "michael.john.hoy@gmail.com"
10
- p.ignore_pattern = ["tmp/*", "script/*" ]
11
- p.development_dependencies = []
4
+ $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
5
+ require 'grabjs/version'
6
+
7
+ task :build do
8
+ system "gem build grabjs.gemspec"
9
+ end
10
+
11
+ task :release => :build do
12
+ system "gem push grabjs-#{GrabJS::VERSION}.gem"
12
13
  end
@@ -0,0 +1,5 @@
1
+ module GrabJS
2
+ def self.url
3
+ "https://github.com/DmitryBaranovskiy/raphael/raw/master/raphael-min.js"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module GrabJS
2
+ def self.url
3
+ "http://documentcloud.github.com/underscore/underscore-min.js"
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module GrabJS
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grabjs
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Michael Hoy
@@ -36,6 +36,8 @@ files:
36
36
  - bin/grabjs
37
37
  - grabjs.gemspec
38
38
  - lib/formula/jquery.rb
39
+ - lib/formula/raphael.rb
40
+ - lib/formula/underscore.rb
39
41
  - lib/grabjs.rb
40
42
  - lib/grabjs/version.rb
41
43
  has_rdoc: true