splashrc 1.1 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd806b933b3d5708d0425c244923e21a496fcbf1
4
- data.tar.gz: cf42ef51713f4f4219775be740c01f2589a2ec05
3
+ metadata.gz: 85b613ee7069a953e030253daf809cf783cc1176
4
+ data.tar.gz: c84ba5d9423705212d3c004a7d2cfc77cf2985b1
5
5
  SHA512:
6
- metadata.gz: 494c32df9d307cce582d6cd71b2d77cb14215754a6f0bd92fe6a82dd90cf3ee7eaf89a0b91529f094bc49b57caddb8e60678579236df76e1222058ab68d190ec
7
- data.tar.gz: 1ed26c929ec347871480f3725f0f422273e6b2362659e1ddb07ac3841b6cacecc94d08d1c6bc5b57e78ae630cd6523e72a71d27f7bb0d6c5d9869b5afa77f8bb
6
+ metadata.gz: 69b09c0a4e59ce680772b40ed0362f47448666f608512ebbe10b9555948c9b8cf4a704c8ac91090c7567e16d0b22d45c184d0a54052cd920eb15bb6d3b1204d2
7
+ data.tar.gz: 27ca781fc1f3d724c11d39ba779e8040b3b6f149e41175ddb7ad37f09336e4e4556cfe1ed55613e26fa5c72cd437fe0b7eae4c248abcfc6bfc59fbdcfd4d1c0b
data/bin/splashrc-disable CHANGED
@@ -9,12 +9,12 @@ end
9
9
 
10
10
  File.exists?(loc)||(puts("#{loc} does not exist.");exit(1))
11
11
 
12
- print "Deinstall rbrc for `#{loc}`? [Y/n]"
12
+ print "Deinstall splashrc for `#{loc}`? [Y/n]"
13
13
  c = gets.chomp
14
14
 
15
15
  if ["y",""].include? c.downcase
16
16
  x = File.read(loc).split("\n")
17
- x.delete_at(x.index(x.select{|i|i.match(/^rbrc/)}[0]))
17
+ x.delete_at(x.index(x.select{|i|i.match(/^splashrc/)}[0]))
18
18
  x = x.join("\n")
19
19
  File.write(loc,x)
20
20
  puts "Success!"
data/bin/splashrc-enable CHANGED
@@ -9,12 +9,12 @@ end
9
9
 
10
10
  File.exists?(loc)||(puts("#{loc} does not exist.");exit(1))
11
11
 
12
- print "Install rbrc for `#{loc}`? [Y/n]"
12
+ print "Install splashrc for `#{loc}`? [Y/n]"
13
13
  c = gets.chomp
14
14
 
15
15
  if ["y",""].include? c.downcase
16
16
  x = File.read(loc).split("\n")
17
- x << %Q(rbrc # THIS ALWAYS HAS TO BE THE LAST LINE)
17
+ x << %Q(splashrc # THIS ALWAYS HAS TO BE THE LAST LINE)
18
18
  x = x.join("\n")
19
19
  File.write(loc,x)
20
20
  puts "Success!"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: splashrc
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.1'
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sesshomariu