lib/licensed/configuration.rb in licensed-0.10.0 vs lib/licensed/configuration.rb in licensed-0.11.0
- old
+ new
@@ -35,13 +35,14 @@
def sources
@sources ||= [
Source::Bundler.new(self),
Source::Bower.new(self),
+ Source::Cabal.new(self),
+ Source::Go.new(self),
Source::Manifest.new(self),
Source::NPM.new(self),
- Source::Stack.new(self),
- Source::Go.new(self)
+ Source::Stack.new(self)
].select(&:enabled?)
end
def enabled?(source_type)
self["sources"].fetch(source_type, true)