measurb 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 041ff65242c85675992b2b42b67f1747c24f8e64
4
- data.tar.gz: 37ec1b92574b3a80ee26999d295baf35824ebb7d
3
+ metadata.gz: 92ad04943b4619fd5b99d3773de6dfcf78adfde1
4
+ data.tar.gz: 86b77518c05f2f751c3bdbee13f07d722335674e
5
5
  SHA512:
6
- metadata.gz: c3539e48fb3b4bbe21e341d56907fa7bd4526ccebf61c5e4fe4379c3e9cd22c2c2b7f324c6c0677d74922d83978d112e6f533b0d50e8a811846c498d2b0bc2ca
7
- data.tar.gz: e287a287a4f9bab984ff8f8addaeb8b4df0d75551985dd20c1e7c6230bbcac52a34800db7f3def1d039542c067a5c2ecccf13ffeee82c5f59e508dab95efb40a
6
+ metadata.gz: d03e52d69bdffb0dc301175644fa153383dcc7a850182f41f00bda61ccf90a392d134ce83b233474cfc8321add890e8dfb33bc10ae1dbbe8978ce13e44bf9ec2
7
+ data.tar.gz: 55e6ea398cc002f6a89913aab5707e1bb4d7dc68554fb86e56116786e24f828c3b2a83873d78cf951283c1c275cf0ce389b55260f77a8229124836e6f0c35074
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ langage: ruby
2
+
3
+ rvm:
4
+ - 1.9.3
5
+ - 2.1.2
6
+
7
+ script:
8
+ - bundle exec rspec
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:
@@ -1,3 +1,3 @@
1
1
  module Measurb
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
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.1
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: {}