simple_lightbox 0.1.0
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/Manifest +4 -0
- data/README.rdoc +0 -0
- data/Rakefile +17 -0
- data/lib/simple_lightbox.rb +0 -0
- data/simple_lightbox.gemspec +29 -0
- metadata +64 -0
data/Manifest
ADDED
data/README.rdoc
ADDED
|
File without changes
|
data/Rakefile
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'rake'
|
|
3
|
+
require 'echoe'
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Echoe.new('simple_lightbox', '0.1.0') do |p|
|
|
7
|
+
|
|
8
|
+
p.description = "Simple jQuery UI based lightbox"
|
|
9
|
+
p.url = "http://github.com/edtaupier/simple_lightbox"
|
|
10
|
+
p.author = "Edward Taupier"
|
|
11
|
+
p.email = "edtaupier@gmail.com"
|
|
12
|
+
p.ignore_pattern = ["tmp/*", "script/*"]
|
|
13
|
+
p.development_dependencies = []
|
|
14
|
+
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each{ |ext| load ext}
|
|
File without changes
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = %q{simple_lightbox}
|
|
5
|
+
s.version = "0.1.0"
|
|
6
|
+
|
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
|
+
s.authors = [%q{Edward Taupier}]
|
|
9
|
+
s.date = %q{2011-06-11}
|
|
10
|
+
s.description = %q{Simple jQuery UI based lightbox}
|
|
11
|
+
s.email = %q{edtaupier@gmail.com}
|
|
12
|
+
s.extra_rdoc_files = [%q{README.rdoc}, %q{lib/simple_lightbox.rb}]
|
|
13
|
+
s.files = [%q{README.rdoc}, %q{Rakefile}, %q{lib/simple_lightbox.rb}, %q{Manifest}, %q{simple_lightbox.gemspec}]
|
|
14
|
+
s.homepage = %q{http://github.com/edtaupier/simple_lightbox}
|
|
15
|
+
s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Simple_lightbox}, %q{--main}, %q{README.rdoc}]
|
|
16
|
+
s.require_paths = [%q{lib}]
|
|
17
|
+
s.rubyforge_project = %q{simple_lightbox}
|
|
18
|
+
s.rubygems_version = %q{1.8.5}
|
|
19
|
+
s.summary = %q{Simple jQuery UI based lightbox}
|
|
20
|
+
|
|
21
|
+
if s.respond_to? :specification_version then
|
|
22
|
+
s.specification_version = 3
|
|
23
|
+
|
|
24
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
25
|
+
else
|
|
26
|
+
end
|
|
27
|
+
else
|
|
28
|
+
end
|
|
29
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: simple_lightbox
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.1.0
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Edward Taupier
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2011-06-11 00:00:00 Z
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description: Simple jQuery UI based lightbox
|
|
17
|
+
email: edtaupier@gmail.com
|
|
18
|
+
executables: []
|
|
19
|
+
|
|
20
|
+
extensions: []
|
|
21
|
+
|
|
22
|
+
extra_rdoc_files:
|
|
23
|
+
- README.rdoc
|
|
24
|
+
- lib/simple_lightbox.rb
|
|
25
|
+
files:
|
|
26
|
+
- README.rdoc
|
|
27
|
+
- Rakefile
|
|
28
|
+
- lib/simple_lightbox.rb
|
|
29
|
+
- Manifest
|
|
30
|
+
- simple_lightbox.gemspec
|
|
31
|
+
homepage: http://github.com/edtaupier/simple_lightbox
|
|
32
|
+
licenses: []
|
|
33
|
+
|
|
34
|
+
post_install_message:
|
|
35
|
+
rdoc_options:
|
|
36
|
+
- --line-numbers
|
|
37
|
+
- --inline-source
|
|
38
|
+
- --title
|
|
39
|
+
- Simple_lightbox
|
|
40
|
+
- --main
|
|
41
|
+
- README.rdoc
|
|
42
|
+
require_paths:
|
|
43
|
+
- lib
|
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
45
|
+
none: false
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: "0"
|
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
|
+
none: false
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: "1.2"
|
|
56
|
+
requirements: []
|
|
57
|
+
|
|
58
|
+
rubyforge_project: simple_lightbox
|
|
59
|
+
rubygems_version: 1.8.5
|
|
60
|
+
signing_key:
|
|
61
|
+
specification_version: 3
|
|
62
|
+
summary: Simple jQuery UI based lightbox
|
|
63
|
+
test_files: []
|
|
64
|
+
|