standup_md 0.0.10 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +9 -13
- data/lib/standup_md/version.rb +2 -2
- data/standup_md.gemspec +3 -2
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3103350380332fa4f6151271cda67398fa0e3d66ad67da96a16e21b14a2ee60
|
4
|
+
data.tar.gz: 0ebadf701e13e50fd382887d71cce15a364a971aea7079637868bc5906436824
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89cdf249a2924a6349a332d2d192f75e68490fefd839ea90ab66fe0a2fe4ee0e260018aab2ab1b7a14e1c5b6f1a96c0bef1e573c8fe9fd712951dc8395f6f5d1
|
7
|
+
data.tar.gz: 6e3c6d0cfc9221290230127bc9afe6c46600d13b10331c9cfd467f01409d7a49899a1a678a573fde62ac34bc857c93ebfe8ecc3180c1c17fc587f788679c3c13
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -46,20 +46,16 @@ remain `< 0.1.0`.
|
|
46
46
|
|
47
47
|
## Installation
|
48
48
|
### Via RubyGems
|
49
|
-
|
50
|
-
instructions](#manual-installation). The gem will be officially released once
|
51
|
-
[this milestone](https://github.com/evanthegrayt/standup_md/milestone/1) is
|
52
|
-
completed*.
|
49
|
+
Just install the gem!
|
53
50
|
|
54
|
-
|
51
|
+
```sh
|
52
|
+
gem install standup_md
|
53
|
+
```
|
55
54
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
<!-- using [rvm](https://rvm.io/) or -->
|
61
|
-
<!-- [rbenv](http://www.rubyinside.com/rbenv-a-simple-new-ruby-version-management-tool-5302.html), -->
|
62
|
-
<!-- or you can try to use a manual method below. -->
|
55
|
+
If you don't have permission on your system to install ruby or gems, I recommend
|
56
|
+
using [rvm](https://rvm.io/) or
|
57
|
+
[rbenv](http://www.rubyinside.com/rbenv-a-simple-new-ruby-version-management-tool-5302.html),
|
58
|
+
or you can try the manual methods below.
|
63
59
|
|
64
60
|
|
65
61
|
### Manual Installation
|
@@ -75,7 +71,7 @@ rake install
|
|
75
71
|
|
76
72
|
# OR manually link the executable somewhere. If you use this method, you cannot
|
77
73
|
# move the repository after you link it!
|
78
|
-
ln -s $PWD/bin/standup /usr/local/bin
|
74
|
+
ln -s $PWD/bin/standup /usr/local/bin/standup
|
79
75
|
```
|
80
76
|
|
81
77
|
## Usage
|
data/lib/standup_md/version.rb
CHANGED
data/standup_md.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
|
11
11
|
spec.summary = %q{The cure for all your standup woes}
|
12
12
|
spec.description = %q{Generate and edit standups in markdown format}
|
13
|
-
spec.homepage = 'https://github.
|
13
|
+
spec.homepage = 'https://evanthegrayt.github.io/standup_md/'
|
14
14
|
|
15
15
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
16
16
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
@@ -18,7 +18,8 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
19
19
|
|
20
20
|
spec.metadata['homepage_uri'] = spec.homepage
|
21
|
-
spec.metadata['source_code_uri'] =
|
21
|
+
spec.metadata['source_code_uri'] = 'https://github.com/evanthegrayt/standup_md'
|
22
|
+
spec.metadata['documentation_uri'] = 'https://evanthegrayt.github.io/standup_md/doc/index.html'
|
22
23
|
else
|
23
24
|
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
24
25
|
'public gem pushes.'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standup_md
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Gray
|
@@ -79,13 +79,14 @@ files:
|
|
79
79
|
- lib/standup_md/cli.rb
|
80
80
|
- lib/standup_md/version.rb
|
81
81
|
- standup_md.gemspec
|
82
|
-
homepage: https://github.
|
82
|
+
homepage: https://evanthegrayt.github.io/standup_md/
|
83
83
|
licenses:
|
84
84
|
- MIT
|
85
85
|
metadata:
|
86
86
|
allowed_push_host: https://rubygems.org
|
87
|
-
homepage_uri: https://github.
|
87
|
+
homepage_uri: https://evanthegrayt.github.io/standup_md/
|
88
88
|
source_code_uri: https://github.com/evanthegrayt/standup_md
|
89
|
+
documentation_uri: https://evanthegrayt.github.io/standup_md/doc/index.html
|
89
90
|
post_install_message:
|
90
91
|
rdoc_options: []
|
91
92
|
require_paths:
|