dev 1.0.60 → 1.0.61
Sign up to get free protection for your applications and to get access to all the features.
- 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"
|