require_gist 0.0.1 → 0.0.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/require_gist.gemspec +26 -0
- metadata +4 -3
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = %q{require_gist}
|
|
5
|
+
s.version = "0.0.2"
|
|
6
|
+
|
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
+
s.authors = ["Evgeniy Dolzhenko"]
|
|
9
|
+
s.date = %q{2010-04-20}
|
|
10
|
+
s.email = %q{dolzenko@gmail.com}
|
|
11
|
+
s.files = ["lib/require_gist.rb", "require_gist.gemspec", "spec/require_gist_spec.rb", "spec/require_gist_test_gist.rb", "thirdparty/require_gist.user.js"]
|
|
12
|
+
s.homepage = %q{http://github.com/dolzenko/require_gist}
|
|
13
|
+
s.require_paths = ["lib"]
|
|
14
|
+
s.rubygems_version = %q{1.3.6}
|
|
15
|
+
s.summary = %q{Require code directly from GitHub's Gists}
|
|
16
|
+
|
|
17
|
+
if s.respond_to? :specification_version then
|
|
18
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
19
|
+
s.specification_version = 3
|
|
20
|
+
|
|
21
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
22
|
+
else
|
|
23
|
+
end
|
|
24
|
+
else
|
|
25
|
+
end
|
|
26
|
+
end
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.0.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Evgeniy Dolzhenko
|
|
@@ -28,11 +28,12 @@ extra_rdoc_files: []
|
|
|
28
28
|
|
|
29
29
|
files:
|
|
30
30
|
- lib/require_gist.rb
|
|
31
|
+
- require_gist.gemspec
|
|
31
32
|
- spec/require_gist_spec.rb
|
|
32
33
|
- spec/require_gist_test_gist.rb
|
|
33
34
|
- thirdparty/require_gist.user.js
|
|
34
35
|
has_rdoc: true
|
|
35
|
-
homepage: http://
|
|
36
|
+
homepage: http://github.com/dolzenko/require_gist
|
|
36
37
|
licenses: []
|
|
37
38
|
|
|
38
39
|
post_install_message:
|