dev 1.0.60 → 1.0.61
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.
- data/lib/dev/Project.rb +2 -2
- metadata +1 -1
data/lib/dev/Project.rb
CHANGED
|
@@ -281,8 +281,8 @@ class Project < Hash
|
|
|
281
281
|
|
|
282
282
|
|
|
283
283
|
value="**/*.{rb,feature,semver}" if key=="src_glob"
|
|
284
|
-
value="**/*.{cs,csproj,sln,xaml,xml,rb,resx,settings,feature,semver,snk}" if key=="src_glob" && self[:type]=="C#"
|
|
285
|
-
value="**/*.{c,cpp,h,hpp,semver,vcproj,sln}" if key=="src_glob" && (self[:type]=="C++" || self[:type]=="c++" || self[:type]=="cpp")
|
|
284
|
+
value="**/*.{cs,csproj,sln,xaml,xml,rb,resx,settings,feature,semver,snk,txt}" if key=="src_glob" && self[:type]=="C#"
|
|
285
|
+
value="**/*.{c,cpp,h,hpp,semver,vcproj,sln,txt}" if key=="src_glob" && (self[:type]=="C++" || self[:type]=="c++" || self[:type]=="cpp")
|
|
286
286
|
value="**/*.{rb,feature,semver}" if key=="src_glob" && self[:type]=="ruby"
|
|
287
287
|
value="**/*.{rb,feature,gemspec,semver}" if key=="src_glob" && self[:type]=="gem"
|
|
288
288
|
value=loc_total if key=="loc"
|