2019-09-28 11:48:59 +00:00
$: . push File . expand_path ( " ../lib " , __FILE__ )
# Maintain your gem's version:
require " patchfile/version "
2019-10-23 16:05:59 +00:00
app_path = File . expand_path ( __dir__ )
2020-02-08 04:22:25 +00:00
template_path = ENV [ 'PWD' ] + '/app/templates'
all_template = Dir . glob ( template_path + '/*/' )
puts 'editing files for sassc'
2020-02-08 04:34:42 +00:00
check_texts = [ '@import "../../bootstrap/variables";' , " .response-content { \n position: relative; \n \n @media (min-width: $screen-sm) { \n width: 100%; \n } \n \n @media (min-width: $screen-md) { \n width: 970px; \n } \n \n @media (min-width: $screen-lg) { \n width: 1100px; \n } \n } \n " ]
2020-02-08 04:22:25 +00:00
all_template . each do | folder |
if ! folder . include? ( 'mobile' )
begin
if folder . split ( '/' ) [ - 1 ] != 'mobile'
@filename = folder + 'assets/stylesheets/template/base/_variables.scss'
texts = File . read ( @filename )
check_texts . each do | check_text |
if ! texts . include? ( check_text )
puts " editing #{ folder } assets/stylesheets/template/base/_variables.scss "
File . open ( @filename , 'a' ) do | file |
file . puts check_text
end
end
end
end
rescue
puts " not found #{ folder } assets/stylesheets/template/base/_variables.scss "
end
end
end
2020-01-13 06:54:42 +00:00
if ! Dir . exist? ( " #{ ENV [ 'PWD' ] } " + " /app/assets/stylesheets/lib/jquery-ui-1.12.1/ " )
2019-10-23 16:05:59 +00:00
puts " copying jquery-ui "
begin
` cp -r " #{ app_path } /updatefiles/accessibility/jquery-ui-1.12.1/." " #{ ENV [ 'PWD' ] } /app/assets/stylesheets/lib/jquery-ui-1.12.1/" `
rescue
puts " There is an error in coppying jquery-ui "
end
end
2020-02-08 04:29:26 +00:00
@original_dir = Dir . pwd
2020-02-08 05:02:30 +00:00
` cd " #{ ENV [ 'PWD' ] } " && git add app/templates/ app/assets built_in_extensions.rb config/mongoid.yml bin/ && cd " #{ @original_dir } " ` #using git to add modified files and to avoid git pull not working
2020-01-13 06:54:42 +00:00
#Add patchfile to Admin area
@patchfile_li = File . read ( app_path + " /patchfile_li.txt " )
@patchfile_li_choices = File . read ( app_path + " /patchfile_li_choices.txt " )
2020-01-13 08:30:28 +00:00
@file_text = File . read ( ENV [ 'PWD' ] + '/app/views/shared/_side_bar.html.erb' )
2020-01-13 08:27:25 +00:00
if ! @file_text . include? ( '<div class="patchfile sub-nav-block icons-megaphone">' )
@indert_index = @file_text . index ( '</nav>' )
@file_text . insert ( @indert_index , @patchfile_li_choices )
end
if ! @file_text . include? ( 'patchfile_li' )
@indert_index = @file_text . index ( '<li title="<%= t(\'site_info\') %>">' )
@file_text . insert ( @indert_index , @patchfile_li )
2020-01-13 06:54:42 +00:00
end
2020-01-13 08:27:25 +00:00
f = File . open ( ENV [ 'PWD' ] + '/app/views/shared/_side_bar.html.erb' , 'w' )
f . write ( @file_text )
f . close
puts " finish change patchfile in #{ ENV [ 'PWD' ] } /app/views/shared "
2019-09-28 11:48:59 +00:00
# Describe your gem and declare its dependencies:
Gem :: Specification . new do | s |
s . name = " patchfile "
2019-09-28 11:58:49 +00:00
s . version = Patchfile :: VERSION
2019-10-04 12:55:42 +00:00
s . authors = [ " Ruling Digital " ]
s . email = [ " orbit@rulingcom.com " ]
2019-09-28 11:48:59 +00:00
s . homepage = " http://www.rulingcom.com "
s . summary = " Patch_file for Orbit "
s . description = " Patch_file for Orbit "
s . license = " MIT "
s . files = Dir [ " {app,config,db,lib}/**/* " , " MIT-LICENSE " , " Rakefile " , " README.rdoc " ]
s . test_files = Dir [ " test/**/* " ]
end