Sha256: 3f20090dcedf1a3e5eb4ed10b786566a730dc7257d8fb33ef68500005eca6e06
Contents?: true
Size: 855 Bytes
Versions: 1
Compression:
Stored size: 855 Bytes
Contents
# frozen_string_literal: true puts __FILE__ if defined?(DEBUG) SOURCE = FileList.new("LICENSE", "README", "README.md", "Gemfile") SOURCE.include("*.{gitignore,yml,gemspec}") SOURCE.include("**/*.{rb}") SOURCE.include("**/*.{cs,xaml,resx,settings}") SOURCE.include("**/*.{c,h}") SOURCE.include("**/*.{cpp,hpp}") SOURCE.include("**/*.{swift}") SOURCE.include("**/*.{xcodeproj,plist,storyboard,json}") SOURCE.include("**/*.{csproj,sln,nuspec,config,snk}") SOURCE.include("**/*.{saproj}") SOURCE.include("**/*.{jpeg,jpg,png,bmp,gif,tif}") SOURCE.include("**/*.{html,htm}") SOURCE.include("**/*.{ico}") SOURCE.include("**/*.{txt}") SOURCE.include("**/*.{wxs,_wxs}") SOURCE.exclude("bin", "obj", "lib") SOURCE.exclude("**/obj/**/*.*") SOURCE.exclude("**/bin/**/*.*") SOURCE.exclude("commit.message") SOURCE.exclude("rakefile.default")
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dev-2.1.154 | lib/base/source.rb |