string_in_file 1.0.0
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.
- checksums.yaml +7 -0
- data/.gitignore +107 -0
- data/.rspec +2 -0
- data/.rubocop.yml +27 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +66 -0
- data/Rakefile +6 -0
- data/all.sh +5 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/code_test.sh +35 -0
- data/credentials.sh +53 -0
- data/gem_console.sh +4 -0
- data/gem_install.sh +10 -0
- data/gem_test.sh +10 -0
- data/git_check.sh +13 -0
- data/lib/string_in_file.rb +86 -0
- data/lib/string_in_file/version.rb +3 -0
- data/string_in_file.gemspec +34 -0
- metadata +190 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 97b5839e8b5461de4c4fe16da3078a5058c09885
|
4
|
+
data.tar.gz: 95b71c9e268b268961d3d224ba3702a1751d838f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3892a47c5011860c2fc004673767fa3e84451e8027b06a2da35e11ea9a8ef64c2147fe67453d2378e3f8535571b3bf7c11e809b79cef8dfa7dc2ff26bbd73054
|
7
|
+
data.tar.gz: a74c562fa6aaad0818581de14b9273915611f877b3e0900aa6fe6c6ed5507bffe4166885ce357125163cf120faf5231da4bfdbae6e0a174dc4c7b5fcde089ea8
|
data/.gitignore
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
########################
|
2
|
+
# BEGIN:initial contents
|
3
|
+
########################
|
4
|
+
|
5
|
+
/.bundle/
|
6
|
+
/.yardoc
|
7
|
+
/Gemfile.lock
|
8
|
+
/_yardoc/
|
9
|
+
/coverage/
|
10
|
+
/doc/
|
11
|
+
/pkg/
|
12
|
+
/spec/reports/
|
13
|
+
/tmp/
|
14
|
+
|
15
|
+
# rspec failure tracking
|
16
|
+
.rspec_status
|
17
|
+
|
18
|
+
#######################
|
19
|
+
# END: initial contents
|
20
|
+
#######################
|
21
|
+
|
22
|
+
################################
|
23
|
+
# BEGIN: Windows files to ignore
|
24
|
+
################################
|
25
|
+
# FROM https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
|
26
|
+
|
27
|
+
# Windows image file caches
|
28
|
+
Thumbs.db
|
29
|
+
ehthumbs.db
|
30
|
+
|
31
|
+
# Folder config file
|
32
|
+
Desktop.ini
|
33
|
+
|
34
|
+
# Recycle Bin used on file shares
|
35
|
+
$RECYCLE.BIN/
|
36
|
+
|
37
|
+
# Windows Installer files
|
38
|
+
*.cab
|
39
|
+
*.msi
|
40
|
+
*.msm
|
41
|
+
*.msp
|
42
|
+
|
43
|
+
# Windows shortcuts
|
44
|
+
*.lnk
|
45
|
+
##############################
|
46
|
+
# END: Windows files to ignore
|
47
|
+
##############################
|
48
|
+
|
49
|
+
#############################
|
50
|
+
# BEGIN: OS X files to ignore
|
51
|
+
#############################
|
52
|
+
# FROM https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
|
53
|
+
|
54
|
+
*.DS_Store
|
55
|
+
.AppleDouble
|
56
|
+
.LSOverride
|
57
|
+
|
58
|
+
# Icon must end with two \r
|
59
|
+
Icon
|
60
|
+
|
61
|
+
|
62
|
+
# Thumbnails
|
63
|
+
._*
|
64
|
+
|
65
|
+
# Files that might appear in the root of a volume
|
66
|
+
.DocumentRevisions-V100
|
67
|
+
.fseventsd
|
68
|
+
.Spotlight-V100
|
69
|
+
.TemporaryItems
|
70
|
+
.Trashes
|
71
|
+
.VolumeIcon.icns
|
72
|
+
.com.apple.timemachine.donotpresent
|
73
|
+
|
74
|
+
# Directories potentially created on remote AFP share
|
75
|
+
.AppleDB
|
76
|
+
.AppleDesktop
|
77
|
+
Network Trash Folder
|
78
|
+
Temporary Items
|
79
|
+
.apdisk
|
80
|
+
###########################
|
81
|
+
# END: OS X files to ignore
|
82
|
+
###########################
|
83
|
+
|
84
|
+
##############################
|
85
|
+
# BEGIN: Linux files to ignore
|
86
|
+
##############################
|
87
|
+
# FROM https://github.com/github/gitignore/blob/master/Global/Linux.gitignore
|
88
|
+
|
89
|
+
*~
|
90
|
+
|
91
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
92
|
+
.fuse_hidden*
|
93
|
+
|
94
|
+
# KDE directory preferences
|
95
|
+
.directory
|
96
|
+
|
97
|
+
# Linux trash folder which might appear on any partition or disk
|
98
|
+
.Trash-*
|
99
|
+
############################
|
100
|
+
# END: Linux files to ignore
|
101
|
+
############################
|
102
|
+
|
103
|
+
*.gem
|
104
|
+
tmp*
|
105
|
+
/log/
|
106
|
+
|
107
|
+
# NOTE: Comments MUST get their own dedicated lines and cannot be shared with that of the file name.
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
Metrics/LineLength:
|
2
|
+
Exclude:
|
3
|
+
- string_in_file.gemspec
|
4
|
+
- spec/string_in_file_spec.rb
|
5
|
+
|
6
|
+
Metrics/BlockLength:
|
7
|
+
Exclude:
|
8
|
+
- string_in_file.gemspec
|
9
|
+
- spec/string_in_file_spec.rb
|
10
|
+
|
11
|
+
AllCops:
|
12
|
+
Exclude:
|
13
|
+
- tmp/vulnerabilities/*
|
14
|
+
- tmp/vulnerabilities/lib/*
|
15
|
+
- tmp/vulnerabilities/spec/*
|
16
|
+
|
17
|
+
Metrics/MethodLength:
|
18
|
+
Exclude:
|
19
|
+
- lib/string_in_file.rb
|
20
|
+
|
21
|
+
Lint/UselessAssignment:
|
22
|
+
Exclude:
|
23
|
+
- lib/string_in_file.rb
|
24
|
+
|
25
|
+
Style/RedundantBegin:
|
26
|
+
Exclude:
|
27
|
+
- lib/string_in_file.rb
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at rubyist@jasonhsu.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Jason Hsu
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
[](https://circleci.com/gh/jhsu802701/string_in_file)
|
2
|
+
[](https://gemnasium.com/github.com/jhsu802701/string_in_file)
|
3
|
+
[](https://hakiri.io/github/jhsu802701/string_in_file/master)
|
4
|
+
[](https://codeclimate.com/github/jhsu802701/string_in_file)
|
5
|
+
<a href="https://codeclimate.com/github/jhsu802701/string_in_file/coverage"><img src="https://codeclimate.com/github/jhsu802701/string_in_file/badges/coverage.svg" /></a>
|
6
|
+
|
7
|
+
# StringInFile
|
8
|
+
|
9
|
+
This gem allows you to store a string value in a file. It's the ultimate global variable. This gem can also be used to replace a string in a file with another string, determine if a string is present in a file, or add a string to the beginning or end of a file.
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
Add this line to your application's Gemfile:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
gem 'string_in_file'
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install string_in_file
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
### Store the string "Doppler Value Investing" at /home/wbuffett/test.txt:
|
30
|
+
StringInFile.write("Doppler Value Investing", "/home/wbuffett/test.txt")
|
31
|
+
|
32
|
+
### Read the string stored at /home/wbuffett/test.txt:
|
33
|
+
StringInFile.read("/home/wbuffett/test.txt")
|
34
|
+
|
35
|
+
### Replace "Doppler" with "Next Generation" in the string stored at /home/wbuffett/test.txt:
|
36
|
+
StringInFile.replace("Doppler", "Next Generation", "/home/wbuffett/test.txt")
|
37
|
+
|
38
|
+
### Check to see if the string "Doppler" is present at /home/wbuffett/test.txt:
|
39
|
+
StringInFile.present("Doppler", "/home/wbuffett/test.txt")
|
40
|
+
|
41
|
+
### Add a string to the beginning of a file
|
42
|
+
StringInFile.add_beginning("one two three\n", 'numbers.txt')
|
43
|
+
|
44
|
+
### Add a string to the end of a file
|
45
|
+
StringInFile.add_end("four five six\n", 'numbers.txt')
|
46
|
+
|
47
|
+
## Development
|
48
|
+
|
49
|
+
* To test this gem, enter the command "sh gem_test.sh".
|
50
|
+
* To install this gem, enter the command "sh gem_install.sh".
|
51
|
+
* To test the source code for various metrics, enter the command "sh code_test.sh".
|
52
|
+
* To do all of the above, enter the command "sh all.sh".
|
53
|
+
* To run an interactive prompt, enter the command "sh console.sh".
|
54
|
+
* To release a new version, update the version number in the lib/(name of gem)/version.rb file, and then run "bundle exec rake release". This creates a git tag for the version, push git commits and tags, and pushes the `.gem` file to [rubygems.org](https://rubygems.org).
|
55
|
+
|
56
|
+
## Contributing
|
57
|
+
|
58
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/jhsu802701/string_in_file. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
59
|
+
|
60
|
+
## License
|
61
|
+
|
62
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
63
|
+
|
64
|
+
## Code of Conduct
|
65
|
+
|
66
|
+
Everyone interacting in the StringInFile project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/jhsu802701/string_in_file/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/all.sh
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'string_in_file'
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require 'irb'
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/code_test.sh
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
DIR_PARENT="${PWD%/*}"
|
4
|
+
DIR_TMP="$DIR_PARENT/tmp"
|
5
|
+
mkdir -p log
|
6
|
+
rm -rf tmp
|
7
|
+
|
8
|
+
echo '--------------'
|
9
|
+
echo 'bundle install'
|
10
|
+
bin/setup >/dev/null
|
11
|
+
|
12
|
+
echo
|
13
|
+
echo '----------------------'
|
14
|
+
echo 'bundle exec rubocop -D'
|
15
|
+
bundle exec rubocop -D
|
16
|
+
|
17
|
+
# Update the local ruby-advisory-db advisory database
|
18
|
+
echo '-------------------------------'
|
19
|
+
echo 'bundle exec bundle-audit update'
|
20
|
+
bundle exec bundle-audit update
|
21
|
+
|
22
|
+
# Audit the gems listed in Gemfile.lock for vulnerabilities
|
23
|
+
echo '------------------------'
|
24
|
+
echo 'bundle exec bundle-audit'
|
25
|
+
bundle exec bundle-audit
|
26
|
+
|
27
|
+
echo '----------------------------------------------------------'
|
28
|
+
echo 'bundle exec gemsurance --output log/gemsurance_report.html'
|
29
|
+
bundle exec gemsurance --output log/gemsurance_report.html
|
30
|
+
echo 'Gemsurance Report: log/gemsurance_report.html'
|
31
|
+
|
32
|
+
echo '------------------------------------------------------------------------'
|
33
|
+
echo 'bundle viz --file=log/diagram-gems --format=svg --requirements --version'
|
34
|
+
bundle viz --file=log/diagram-gems --format=jpg --requirements --version
|
35
|
+
echo 'Gem dependency diagram: log/diagram-gems.jpg'
|
data/credentials.sh
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
# Output:
|
4
|
+
# First argument if it is not blank
|
5
|
+
# Second argument if first argument is blank
|
6
|
+
anti_blank () {
|
7
|
+
if [ -z "$1" ]; then
|
8
|
+
echo "$2"
|
9
|
+
else
|
10
|
+
echo "$1"
|
11
|
+
fi
|
12
|
+
}
|
13
|
+
|
14
|
+
# Setting Git email if necessary
|
15
|
+
GIT_EMAIL="$(git config user.email)"
|
16
|
+
if [ -z "$GIT_EMAIL" ]; then
|
17
|
+
EMAIL_DEF='you@example.com'
|
18
|
+
echo
|
19
|
+
echo "Default email address: ${EMAIL_DEF}"
|
20
|
+
echo
|
21
|
+
echo 'Enter your Git email address:'
|
22
|
+
read EMAIL_SEL
|
23
|
+
EMAIL=$(anti_blank $EMAIL_SEL $EMAIL_DEF)
|
24
|
+
echo
|
25
|
+
|
26
|
+
echo
|
27
|
+
echo '------------------------------'
|
28
|
+
echo "git config --global user.email"
|
29
|
+
echo "$EMAIL"
|
30
|
+
git config --global user.email "$EMAIL"
|
31
|
+
fi
|
32
|
+
|
33
|
+
# Setting Git name if necessary
|
34
|
+
GIT_NAME="$(git config user.name)"
|
35
|
+
if [ -z "$GIT_NAME" ]; then
|
36
|
+
NAME_DEF='Your Name'
|
37
|
+
echo
|
38
|
+
echo "Default name: ${NAME_DEF}"
|
39
|
+
echo
|
40
|
+
echo 'Enter your Git name:'
|
41
|
+
read NAME_SEL
|
42
|
+
|
43
|
+
# NOTE: The double quotes are needed to avoid truncating the string
|
44
|
+
# at the space.
|
45
|
+
NAME=$(anti_blank "$NAME_SEL" "$NAME_DEF")
|
46
|
+
|
47
|
+
echo
|
48
|
+
echo '-----------------------------'
|
49
|
+
echo "git config --global user.name"
|
50
|
+
echo "$NAME"
|
51
|
+
git config --global user.name "$NAME"
|
52
|
+
echo
|
53
|
+
fi
|
data/gem_console.sh
ADDED
data/gem_install.sh
ADDED
data/gem_test.sh
ADDED
data/git_check.sh
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
require 'string_in_file/version'
|
2
|
+
|
3
|
+
#
|
4
|
+
module StringInFile
|
5
|
+
# Put contents of file into string
|
6
|
+
# Thanks to Keith R. Bennett for suggesting this solution on ruby.mn.
|
7
|
+
# Please note that newlines are removed.
|
8
|
+
# Thus, this is designed to work with 1-line strings.
|
9
|
+
def self.read(path)
|
10
|
+
str_output = File.readlines(path).join('')
|
11
|
+
str_output = str_output.delete("\n")
|
12
|
+
end
|
13
|
+
|
14
|
+
# Writes the value of a string into a file
|
15
|
+
def self.write(str_to_write, path)
|
16
|
+
File.open(path, 'w') { |f| f.write(str_to_write) }
|
17
|
+
end
|
18
|
+
|
19
|
+
# Replace all instances of string1 in a file with string2
|
20
|
+
# If string1 does not exist in the file, or if the file does not
|
21
|
+
# exist, no action is taken.
|
22
|
+
def self.replace(string1, string2, path)
|
23
|
+
path_old = "#{path}.old"
|
24
|
+
system("mv #{path} #{path_old}")
|
25
|
+
|
26
|
+
# Create a new file and write to it
|
27
|
+
file_to_write = File.open(path, 'w')
|
28
|
+
File.foreach(path_old) do |line|
|
29
|
+
# does the line contain our string?
|
30
|
+
if line.include?(string1)
|
31
|
+
file_to_write.puts line.gsub!(string1, string2)
|
32
|
+
else
|
33
|
+
file_to_write.puts line
|
34
|
+
end
|
35
|
+
end
|
36
|
+
file_to_write.close
|
37
|
+
|
38
|
+
# Delete the old file
|
39
|
+
system("rm -f #{path_old}")
|
40
|
+
end
|
41
|
+
|
42
|
+
def self.present(str_to_find, path)
|
43
|
+
begin
|
44
|
+
# loop through each line in the file
|
45
|
+
File.foreach(path) do |line|
|
46
|
+
# does the line contain our string?
|
47
|
+
return true if line.include?(str_to_find)
|
48
|
+
end
|
49
|
+
return false
|
50
|
+
rescue
|
51
|
+
return false
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def self.add_beginning(str_to_add, path)
|
56
|
+
path_old = "#{path}.old"
|
57
|
+
system("mv #{path} #{path_old}")
|
58
|
+
|
59
|
+
# Create a new file and write to it
|
60
|
+
file_to_write = File.open(path, 'w')
|
61
|
+
file_to_write.puts str_to_add
|
62
|
+
File.foreach(path_old) do |line|
|
63
|
+
file_to_write.puts line
|
64
|
+
end
|
65
|
+
file_to_write.close
|
66
|
+
|
67
|
+
# Delete the old file
|
68
|
+
system("rm -f #{path_old}")
|
69
|
+
end
|
70
|
+
|
71
|
+
def self.add_end(str_to_add, path)
|
72
|
+
path_old = "#{path}.old"
|
73
|
+
system("mv #{path} #{path_old}")
|
74
|
+
|
75
|
+
# Create a new file and write to it
|
76
|
+
file_to_write = File.open(path, 'w')
|
77
|
+
File.foreach(path_old) do |line|
|
78
|
+
file_to_write.puts line
|
79
|
+
end
|
80
|
+
file_to_write.puts str_to_add
|
81
|
+
file_to_write.close
|
82
|
+
|
83
|
+
# Delete the old file
|
84
|
+
system("rm -f #{path_old}")
|
85
|
+
end
|
86
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
lib = File.expand_path('../lib', __FILE__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
require 'string_in_file/version'
|
6
|
+
|
7
|
+
Gem::Specification.new do |spec|
|
8
|
+
spec.name = 'string_in_file'
|
9
|
+
spec.version = StringInFile::VERSION
|
10
|
+
spec.authors = ['Jason Hsu']
|
11
|
+
spec.email = ['rubyist@jasonhsu.com']
|
12
|
+
|
13
|
+
spec.summary = 'Write string values to files and read file contents into strings.'
|
14
|
+
spec.description = 'Write string values to files and read file contents into strings.'
|
15
|
+
spec.homepage = 'https://github.com/jhsu802701/string_in_file'
|
16
|
+
spec.license = 'MIT'
|
17
|
+
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
19
|
+
f.match(%r{^(test|spec|features)/})
|
20
|
+
end
|
21
|
+
spec.bindir = 'exe'
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ['lib']
|
24
|
+
|
25
|
+
spec.add_development_dependency 'bundler', '~> 1.15'
|
26
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
27
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
28
|
+
spec.add_development_dependency 'rubocop'
|
29
|
+
spec.add_development_dependency 'bundler-audit'
|
30
|
+
spec.add_development_dependency 'gemsurance'
|
31
|
+
spec.add_development_dependency 'ruby-graphviz'
|
32
|
+
spec.add_development_dependency 'simplecov'
|
33
|
+
spec.add_development_dependency 'codeclimate-test-reporter'
|
34
|
+
end
|
metadata
ADDED
@@ -0,0 +1,190 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: string_in_file
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jason Hsu
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-08-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rubocop
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bundler-audit
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: gemsurance
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: ruby-graphviz
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: codeclimate-test-reporter
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
description: Write string values to files and read file contents into strings.
|
140
|
+
email:
|
141
|
+
- rubyist@jasonhsu.com
|
142
|
+
executables: []
|
143
|
+
extensions: []
|
144
|
+
extra_rdoc_files: []
|
145
|
+
files:
|
146
|
+
- ".gitignore"
|
147
|
+
- ".rspec"
|
148
|
+
- ".rubocop.yml"
|
149
|
+
- CODE_OF_CONDUCT.md
|
150
|
+
- Gemfile
|
151
|
+
- LICENSE.txt
|
152
|
+
- README.md
|
153
|
+
- Rakefile
|
154
|
+
- all.sh
|
155
|
+
- bin/console
|
156
|
+
- bin/setup
|
157
|
+
- code_test.sh
|
158
|
+
- credentials.sh
|
159
|
+
- gem_console.sh
|
160
|
+
- gem_install.sh
|
161
|
+
- gem_test.sh
|
162
|
+
- git_check.sh
|
163
|
+
- lib/string_in_file.rb
|
164
|
+
- lib/string_in_file/version.rb
|
165
|
+
- string_in_file.gemspec
|
166
|
+
homepage: https://github.com/jhsu802701/string_in_file
|
167
|
+
licenses:
|
168
|
+
- MIT
|
169
|
+
metadata: {}
|
170
|
+
post_install_message:
|
171
|
+
rdoc_options: []
|
172
|
+
require_paths:
|
173
|
+
- lib
|
174
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - ">="
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: '0'
|
179
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
180
|
+
requirements:
|
181
|
+
- - ">="
|
182
|
+
- !ruby/object:Gem::Version
|
183
|
+
version: '0'
|
184
|
+
requirements: []
|
185
|
+
rubyforge_project:
|
186
|
+
rubygems_version: 2.6.12
|
187
|
+
signing_key:
|
188
|
+
specification_version: 4
|
189
|
+
summary: Write string values to files and read file contents into strings.
|
190
|
+
test_files: []
|