This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class IdentificationStrategy | |
| def initialize origin, priorities | |
| @origin = origin | |
| @priorities = [priorities].flatten | |
| end | |
| def branch candidates | |
| case candidates.length | |
| when 0 | |
| zero |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class IdentificationStrategy | |
| def initialize origin, priorities | |
| @origin = origin | |
| @priorities = [priorities].flatten | |
| end | |
| def branch candidates | |
| case candidates.length | |
| when 0 | |
| zero |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- encoding: utf-8 -*- | |
| Gem::Specification.new do |s| | |
| s.name = 'parallel_assets_compiler' | |
| s.version = '0.2.2' | |
| s.platform = Gem::Platform::RUBY | |
| s.author = 'Jørgen Orehøj Erichsen' | |
| s.email = '[email protected]' | |
| s.summary = 'Compile assets in parallel' | |
| s.description = 'Compile assets in parallel to speed up deployment' |
NewerOlder