pacing 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +16 -0
- data/.rspec +1 -0
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/Gemfile +9 -0
- data/LICENSE.txt +22 -0
- data/README.md +189 -0
- data/Rakefile +4 -0
- data/lib/pacing/pacer.rb +215 -0
- data/lib/pacing/version.rb +5 -0
- data/pacing.gemspec +20 -0
- data/spec/pacing_spec.rb +852 -0
- data/spec/spec_helper.rb +1 -0
- metadata +18 -3
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'pacing'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pacing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin S. Dias
|
@@ -36,8 +36,21 @@ executables: []
|
|
36
36
|
extensions: []
|
37
37
|
extra_rdoc_files: []
|
38
38
|
files:
|
39
|
+
- ".gitignore"
|
40
|
+
- ".rspec"
|
41
|
+
- ".ruby-version"
|
42
|
+
- CODE_OF_CONDUCT.md
|
43
|
+
- Gemfile
|
44
|
+
- LICENSE.txt
|
45
|
+
- README.md
|
46
|
+
- Rakefile
|
39
47
|
- lib/pacing.rb
|
40
|
-
|
48
|
+
- lib/pacing/pacer.rb
|
49
|
+
- lib/pacing/version.rb
|
50
|
+
- pacing.gemspec
|
51
|
+
- spec/pacing_spec.rb
|
52
|
+
- spec/spec_helper.rb
|
53
|
+
homepage: https://github.com/Ambiki/pacing
|
41
54
|
licenses:
|
42
55
|
- MIT
|
43
56
|
metadata: {}
|
@@ -61,4 +74,6 @@ signing_key:
|
|
61
74
|
specification_version: 4
|
62
75
|
summary: Pacing is a tool that enables therapists to better manage and track their
|
63
76
|
caseload.
|
64
|
-
test_files:
|
77
|
+
test_files:
|
78
|
+
- spec/pacing_spec.rb
|
79
|
+
- spec/spec_helper.rb
|