measurb 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +8 -0
- data/README.md +3 -0
- data/lib/measurb/version.rb +1 -1
- data/measurb.gemspec +2 -3
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92ad04943b4619fd5b99d3773de6dfcf78adfde1
|
4
|
+
data.tar.gz: 86b77518c05f2f751c3bdbee13f07d722335674e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d03e52d69bdffb0dc301175644fa153383dcc7a850182f41f00bda61ccf90a392d134ce83b233474cfc8321add890e8dfb33bc10ae1dbbe8978ce13e44bf9ec2
|
7
|
+
data.tar.gz: 55e6ea398cc002f6a89913aab5707e1bb4d7dc68554fb86e56116786e24f828c3b2a83873d78cf951283c1c275cf0ce389b55260f77a8229124836e6f0c35074
|
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
|
3
3
|
Handle units of measurment with ease! Measurb is a Ruby library for creating and managing units of measurements, or dimensions. Create your own units and define how to convert amongst them. Measurb also comes with a few default dimensions: inches, feet, and yards, but you don't have to use them. Measurb takes care of the tediousness of adding, subtracting, and comparing different measurements, especially between different units of measurement.
|
4
4
|
|
5
|
+
## Build Status
|
6
|
+
[![Build Status](https://travis-ci.org/jfairbank/measurb.svg?branch=master)](https://travis-ci.org/jfairbank/measurb)
|
7
|
+
|
5
8
|
## Installation
|
6
9
|
|
7
10
|
Add this line to your application's Gemfile:
|
data/lib/measurb/version.rb
CHANGED
data/measurb.gemspec
CHANGED
@@ -9,11 +9,10 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ['Jeremy Fairbank']
|
10
10
|
spec.email = ['elpapapollo@gmail.com']
|
11
11
|
spec.summary = %q{Handle units of measurement}
|
12
|
-
spec.description = %q{Handle units of measurement}
|
13
|
-
spec.homepage = ''
|
12
|
+
spec.description = %q{Handle units of measurement in your Ruby applications.}
|
13
|
+
spec.homepage = 'https://github.com/jfairbank/measurb'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
|
16
|
-
#spec.files = `git ls-files -z`.split('\x0')
|
17
16
|
spec.files = `git ls-files`.split($/)
|
18
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: measurb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Fairbank
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 3.0.0
|
55
|
-
description: Handle units of measurement
|
55
|
+
description: Handle units of measurement in your Ruby applications.
|
56
56
|
email:
|
57
57
|
- elpapapollo@gmail.com
|
58
58
|
executables: []
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- ".gitignore"
|
63
63
|
- ".rspec"
|
64
|
+
- ".travis.yml"
|
64
65
|
- Gemfile
|
65
66
|
- LICENSE.txt
|
66
67
|
- README.md
|
@@ -87,7 +88,7 @@ files:
|
|
87
88
|
- spec/helpers/matchers.rb
|
88
89
|
- spec/numeric_ext_spec.rb
|
89
90
|
- spec/spec_helper.rb
|
90
|
-
homepage:
|
91
|
+
homepage: https://github.com/jfairbank/measurb
|
91
92
|
licenses:
|
92
93
|
- MIT
|
93
94
|
metadata: {}
|