runby_pace 0.61.156 → 0.61.157
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -5
- 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: 0e1a66e5910275704128a7cffa00fcc0a952e89f
|
4
|
+
data.tar.gz: 0619a0ece7233c489f6794f53bea9216356fe26a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1450ee6e5bddeaa3f09666d143db6e9712df22a37d443a12e8b667ce07efafbee8ef7fa4236c451540ba43780862dcfef899dce1cb1ad930e81bb76237cfb773
|
7
|
+
data.tar.gz: 5711a319e8a71bd20b9e2ee75af9b374ff8a4ddbb01ea620256b832878a96a6cffbc764420cdd50d2157aa306e407bfea9b59b4d7efcf6905949a40658f73270
|
data/README.md
CHANGED
@@ -21,7 +21,7 @@ Any sort of running program will include runs at varying paces, easy runs, dista
|
|
21
21
|
So this is great, but a little tedious. RunbyPace automates this whole process by calculating all of the paces for you.
|
22
22
|
All you need is your current 5K time and some Ruby, and you're off running at just the right pace.
|
23
23
|
|
24
|
-
|
24
|
+
RunbyPace also encapsulates the logic and math necessary for many running-related calculations based on time, pace, speed, unit coversions, etc. If you're tired of constantly converting minutes and seconds to decimal and back again, RunbyPace is for you.
|
25
25
|
|
26
26
|
## Installation
|
27
27
|
|
@@ -35,24 +35,32 @@ And then execute:
|
|
35
35
|
|
36
36
|
$ bundle
|
37
37
|
|
38
|
-
Or install it yourself
|
38
|
+
Or install it yourself:
|
39
39
|
|
40
40
|
$ gem install runby_pace
|
41
41
|
|
42
42
|
## Usage
|
43
43
|
|
44
|
-
|
44
|
+
I plan to craft better docs in the future, but for now the **specs** make for excellent class usage documentation: https://github.com/tygerbytes/runby-pace/tree/master/spec/runby_pace
|
45
|
+
|
46
|
+
For a live front end written in **Rails**, see https://runbypace.com. It's code will be open-sourced as well, as soon as we can guarantee secure deployment.
|
47
|
+
|
48
|
+
For an open-source example front end written in **Elm**, see https://github.com/tygerbytes/pacebyelm
|
49
|
+
|
50
|
+
The CLI is still in its infancy, but the gem comes with a basic CLI/REPL (`bin/runbypace`)
|
45
51
|
|
46
52
|
## Development
|
47
53
|
|
48
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
54
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` or `bin/runbypace` for an interactive prompt that will allow you to experiment.
|
49
55
|
|
50
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
56
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
51
57
|
|
52
58
|
## Contributing
|
53
59
|
|
54
60
|
Bug reports and pull requests are welcome on GitHub at https://github.com/tygerbytes/runby-pace.
|
55
61
|
|
62
|
+
Contribute front-end and CLI ideas at [@runbypace](https://twitter.com/runbypace).
|
63
|
+
|
56
64
|
## Acknowledgements
|
57
65
|
|
58
66
|
Crafted with care, with the support of [JetBrains RubyMine](https://www.jetbrains.com/ruby/)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runby_pace
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.61.
|
4
|
+
version: 0.61.157
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ty Walls
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-07
|
11
|
+
date: 2017-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -109,7 +109,7 @@ homepage: https://github.com/tygerbytes/runby-pace
|
|
109
109
|
licenses:
|
110
110
|
- MIT
|
111
111
|
metadata:
|
112
|
-
commit-hash:
|
112
|
+
commit-hash: 9790b270e214ae2255418807f695523bd8c92160
|
113
113
|
post_install_message:
|
114
114
|
rdoc_options: []
|
115
115
|
require_paths:
|