daily-txt 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +14 -19
- data/daily-txt.gemspec +1 -1
- data/lib/daily/txt/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a58310eaa20bad02e40d646d7b63ec7dfd89fc18
|
|
4
|
+
data.tar.gz: 3040a40fab8dea081dcacf0a8cd8ad68430cfd3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 340e4c00f07099687ced37e5c6c057e79fb8a57c860fbeecf522f9cb5f331e9bb1756e484a283ba7afa099715037385dc949df27571247a8461bd500a5dca32e
|
|
7
|
+
data.tar.gz: 048b5855fc258fa3ad94a34e24cb8fe93dee9139ae06c5a7c5c1dca6ed9c991c2d183f84164ba0a68a2f926ff839ec30277f71e1f4e7fff2501965257852c751
|
data/README.md
CHANGED
|
@@ -2,22 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
daily-txt is command line script for creating and listing text files that has a filename with current date.
|
|
4
4
|
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
Add this line to your application's Gemfile:
|
|
8
|
-
|
|
9
|
-
```ruby
|
|
10
|
-
gem 'daily-txt'
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
And then execute:
|
|
14
|
-
|
|
15
|
-
$ bundle
|
|
16
|
-
|
|
17
|
-
Or install it yourself as:
|
|
18
|
-
|
|
19
|
-
$ gem install daily-txt
|
|
20
|
-
|
|
21
5
|
## Usage
|
|
22
6
|
|
|
23
7
|
```
|
|
@@ -53,11 +37,22 @@ $ daily-txt -l
|
|
|
53
37
|
/your/root/text/2016/04/2016_05_04.txt
|
|
54
38
|
```
|
|
55
39
|
|
|
56
|
-
##
|
|
40
|
+
## Installation
|
|
41
|
+
|
|
42
|
+
Add this line to your application's Gemfile:
|
|
43
|
+
|
|
44
|
+
```ruby
|
|
45
|
+
gem 'daily-txt'
|
|
46
|
+
```
|
|
57
47
|
|
|
58
|
-
|
|
48
|
+
And then execute:
|
|
49
|
+
|
|
50
|
+
$ bundle
|
|
51
|
+
|
|
52
|
+
Or install it yourself as:
|
|
53
|
+
|
|
54
|
+
$ gem install daily-txt
|
|
59
55
|
|
|
60
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
61
56
|
|
|
62
57
|
## Contributing
|
|
63
58
|
|
data/daily-txt.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{command line tool for daily text file memo}
|
|
13
13
|
spec.description = %q{daily-txt is command line script for creating and listing text files wth a current date filename.}
|
|
14
|
-
spec.homepage = "
|
|
14
|
+
spec.homepage = "https://github.com/bonar/daily-txt"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/daily/txt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: daily-txt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bonar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -79,7 +79,7 @@ files:
|
|
|
79
79
|
- lib/daily/txt/path_builder.rb
|
|
80
80
|
- lib/daily/txt/system.rb
|
|
81
81
|
- lib/daily/txt/version.rb
|
|
82
|
-
homepage:
|
|
82
|
+
homepage: https://github.com/bonar/daily-txt
|
|
83
83
|
licenses:
|
|
84
84
|
- MIT
|
|
85
85
|
metadata: {}
|