ghp-bootstrap 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +201 -0
- data/README.md +0 -0
- data/VERSION +1 -0
- data/content/css/bootstrap-responsive.css +1092 -0
- data/content/css/bootstrap-responsive.min.css +9 -0
- data/content/css/bootstrap.css +6039 -0
- data/content/css/bootstrap.min.css +9 -0
- data/content/img/glyphicons-halflings-white.png +0 -0
- data/content/img/glyphicons-halflings.png +0 -0
- data/content/js/bootstrap.js +2159 -0
- data/content/js/bootstrap.min.js +6 -0
- data/content/js/jquery.js +9597 -0
- data/lib/development.rb +25 -0
- data/lib/ghp/bootstrap/version.rb +5 -0
- metadata +83 -0
data/lib/development.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
module Bundler
|
2
|
+
class Dsl
|
3
|
+
unless $gex
|
4
|
+
alias :gex :gem
|
5
|
+
$gex = true
|
6
|
+
end
|
7
|
+
|
8
|
+
def gem(nm_gem, opt_gem = {})
|
9
|
+
shome = File.expand_path('../..', __FILE__)
|
10
|
+
gem_info = File.join(shome, ".local", nm_gem)
|
11
|
+
if File.exists? gem_info
|
12
|
+
source "http://localhost:9292"
|
13
|
+
local_opt = { :path => File.read(gem_info).strip }
|
14
|
+
|
15
|
+
unless local_opt[:path].empty?
|
16
|
+
gex nm_gem, local_opt
|
17
|
+
else
|
18
|
+
gex nm_gem, opt_gem.clone
|
19
|
+
end
|
20
|
+
else
|
21
|
+
gex nm_gem, opt_gem.clone
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ghp-bootstrap
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- David Nghiem
|
14
|
+
- Tom Bombadil
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2013-01-26 00:00:00 -08:00
|
20
|
+
default_executable:
|
21
|
+
dependencies: []
|
22
|
+
|
23
|
+
description: git home page bootstrap layout
|
24
|
+
email:
|
25
|
+
- nghidav@gmail.com
|
26
|
+
- amanibhavam@destructuring.org
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- LICENSE
|
35
|
+
- VERSION
|
36
|
+
- README.md
|
37
|
+
- lib/development.rb
|
38
|
+
- lib/ghp/bootstrap/version.rb
|
39
|
+
- content/css/bootstrap-responsive.css
|
40
|
+
- content/css/bootstrap-responsive.min.css
|
41
|
+
- content/css/bootstrap.css
|
42
|
+
- content/css/bootstrap.min.css
|
43
|
+
- content/img/glyphicons-halflings-white.png
|
44
|
+
- content/img/glyphicons-halflings.png
|
45
|
+
- content/js/bootstrap.js
|
46
|
+
- content/js/bootstrap.min.js
|
47
|
+
- content/js/jquery.js
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: https://github.com/destructuring/ghp-bootstrap
|
50
|
+
licenses: []
|
51
|
+
|
52
|
+
post_install_message:
|
53
|
+
rdoc_options: []
|
54
|
+
|
55
|
+
require_paths:
|
56
|
+
- lib
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 3
|
63
|
+
segments:
|
64
|
+
- 0
|
65
|
+
version: "0"
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
hash: 3
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
version: "0"
|
75
|
+
requirements: []
|
76
|
+
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 1.3.7
|
79
|
+
signing_key:
|
80
|
+
specification_version: 3
|
81
|
+
summary: git home page bootstrap layout
|
82
|
+
test_files: []
|
83
|
+
|