app_drone 0.8.5 → 0.8.6
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.
|
@@ -15,12 +15,12 @@ class Bootstrap < Drone
|
|
|
15
15
|
|
|
16
16
|
def align
|
|
17
17
|
bundle.add 'compass_twitter_bootstrap', git: 'git://github.com/vwall/compass-twitter-bootstrap.git', group: :assets
|
|
18
|
-
|
|
18
|
+
false ? align_vendor : align_bundle
|
|
19
19
|
flair!
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
def execute
|
|
23
|
-
|
|
23
|
+
false ? execute_vendor : execute_bundle
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
private
|
|
@@ -5,6 +5,7 @@ class Bootstrap < Drone
|
|
|
5
5
|
category :ui
|
|
6
6
|
|
|
7
7
|
#param :vendor, :boolean, info: 'place a local copy of the files into the repo for customization'
|
|
8
|
+
|
|
8
9
|
param :responsive, :boolean, info: 'include responsive grid'
|
|
9
10
|
param :font_awesome, :boolean, info: 'use font-awesome for icons', default: true
|
|
10
11
|
param :javascript_plugins, :choose_many, info: 'pipeline javascript plugin files', default: [], choices: %w(modal dropdown scrollspy tab tooltip popover alert button collapse carousel typeahead)
|
|
@@ -14,12 +15,12 @@ class Bootstrap < Drone
|
|
|
14
15
|
|
|
15
16
|
def align
|
|
16
17
|
bundle.add 'compass_twitter_bootstrap', git: 'git://github.com/vwall/compass-twitter-bootstrap.git', group: :assets
|
|
17
|
-
|
|
18
|
+
false ? align_vendor : align_bundle
|
|
18
19
|
flair!
|
|
19
20
|
end
|
|
20
21
|
|
|
21
22
|
def execute
|
|
22
|
-
|
|
23
|
+
false ? execute_vendor : execute_bundle
|
|
23
24
|
end
|
|
24
25
|
|
|
25
26
|
private
|
data/lib/app_drone/version.rb
CHANGED
data/lib/app_drone/version.rb~
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: app_drone
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2012-05-02 00:00:00.000000000 Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &22589680 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,7 @@ dependencies:
|
|
|
21
21
|
version: 3.2.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *22589680
|
|
25
25
|
description: Give your Rails apps a kickstart
|
|
26
26
|
email:
|
|
27
27
|
- whoisdanieldavey@gmail.com
|