gravitheque 0.3.0 → 0.4.0

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.
data/test/test_helper.rb CHANGED
@@ -1,5 +1,5 @@
1
- # Rubinius does not (yet?) have the 1.9 Coverage module
2
- unless RUBY_DESCRIPTION =~ /rubinius/i
1
+ # Rubinius does not yet have the 1.9 Coverage module
2
+ unless RUBY_ENGINE == "rbx"
3
3
  require "simplecov"
4
4
 
5
5
  class SimpleCov::Formatter::NoHTMLFormatter
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gravitheque
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.3.0
4
+ version: 0.4.0
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - john muhl
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-01-27 00:00:00.000000000 Z
12
+ date: 2012-02-02 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Tools for brewers.
15
15
  email:
@@ -18,114 +18,70 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - !binary |-
22
- LmdpdGlnbm9yZQ==
23
- - !binary |-
24
- LnRyYXZpcy55bWw=
25
- - !binary |-
26
- LnlhcmRvcHRz
27
- - !binary |-
28
- R2VtZmlsZQ==
29
- - !binary |-
30
- R3VhcmRmaWxl
31
- - !binary |-
32
- TElDRU5TRQ==
33
- - !binary |-
34
- UkVBRE1FLm1k
35
- - !binary |-
36
- YmluL3Rlc3Q=
37
- - !binary |-
38
- Z3Jhdml0aGVxdWUuZ2Vtc3BlYw==
39
- - !binary |-
40
- bGliL2NhbGN1bGF0b3JzLnJi
41
- - !binary |-
42
- bGliL2NhbGN1bGF0b3JzL2FsY29ob2wucmI=
43
- - !binary |-
44
- bGliL2NhbGN1bGF0b3JzL2NhbG9yaWVzLnJi
45
- - !binary |-
46
- bGliL2NhbGN1bGF0b3JzL2hvcHMucmI=
47
- - !binary |-
48
- bGliL2NhbGN1bGF0b3JzL21hc2gucmI=
49
- - !binary |-
50
- bGliL2NhbGN1bGF0b3JzL3llYXN0LnJi
51
- - !binary |-
52
- bGliL2NvbnZlcnNpb25zLnJi
53
- - !binary |-
54
- bGliL2NvbnZlcnNpb25zL2V4dHJhY3QucmI=
55
- - !binary |-
56
- bGliL2NvbnZlcnNpb25zL21hc3MucmI=
57
- - !binary |-
58
- bGliL2NvbnZlcnNpb25zL3RlbXBlcmF0dXJlLnJi
59
- - !binary |-
60
- bGliL2NvbnZlcnNpb25zL3ZvbHVtZS5yYg==
61
- - !binary |-
62
- bGliL2dyYXZpdGhlcXVlLnJi
63
- - !binary |-
64
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X2FsY29ob2wucmI=
65
- - !binary |-
66
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X2NhbG9yaWVzLnJi
67
- - !binary |-
68
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X2hvcHMucmI=
69
- - !binary |-
70
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X21hc2gucmI=
71
- - !binary |-
72
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X3llYXN0LnJi
73
- - !binary |-
74
- dGVzdC9jb252ZXJzaW9ucy90ZXN0X2V4dHJhY3QucmI=
75
- - !binary |-
76
- dGVzdC9jb252ZXJzaW9ucy90ZXN0X21hc3MucmI=
77
- - !binary |-
78
- dGVzdC9jb252ZXJzaW9ucy90ZXN0X3RlbXBlcmF0dXJlLnJi
79
- - !binary |-
80
- dGVzdC9jb252ZXJzaW9ucy90ZXN0X3ZvbHVtZS5yYg==
81
- - !binary |-
82
- dGVzdC90ZXN0X2hlbHBlci5yYg==
21
+ - .gitignore
22
+ - .travis.yml
23
+ - .yardopts
24
+ - Gemfile
25
+ - Guardfile
26
+ - LICENSE
27
+ - README.md
28
+ - bin/test
29
+ - gravitheque.gemspec
30
+ - lib/calculators.rb
31
+ - lib/calculators/alcohol.rb
32
+ - lib/calculators/calories.rb
33
+ - lib/calculators/hops.rb
34
+ - lib/calculators/mash.rb
35
+ - lib/calculators/yeast.rb
36
+ - lib/conversions.rb
37
+ - lib/conversions/extract.rb
38
+ - lib/conversions/mass.rb
39
+ - lib/conversions/temperature.rb
40
+ - lib/conversions/volume.rb
41
+ - lib/gravitheque.rb
42
+ - test/calculators/test_alcohol.rb
43
+ - test/calculators/test_calories.rb
44
+ - test/calculators/test_hops.rb
45
+ - test/calculators/test_mash.rb
46
+ - test/calculators/test_yeast.rb
47
+ - test/conversions/test_extract.rb
48
+ - test/conversions/test_mass.rb
49
+ - test/conversions/test_temperature.rb
50
+ - test/conversions/test_volume.rb
51
+ - test/test_helper.rb
83
52
  homepage: http://gravitheque.herokuapp.com/
84
53
  licenses: []
85
- post_install_message:
54
+ post_install_message:
86
55
  rdoc_options: []
87
56
  require_paths:
88
57
  - lib
89
58
  required_ruby_version: !ruby/object:Gem::Requirement
59
+ none: false
90
60
  requirements:
91
61
  - - ! '>='
92
62
  - !ruby/object:Gem::Version
93
- version: !binary |-
94
- MA==
95
- none: false
63
+ version: '0'
96
64
  required_rubygems_version: !ruby/object:Gem::Requirement
65
+ none: false
97
66
  requirements:
98
67
  - - ! '>='
99
68
  - !ruby/object:Gem::Version
100
- version: !binary |-
101
- MA==
102
- none: false
69
+ version: '0'
103
70
  requirements: []
104
- rubyforge_project:
105
- rubygems_version: 1.8.13
106
- signing_key:
71
+ rubyforge_project:
72
+ rubygems_version: 1.8.11
73
+ signing_key:
107
74
  specification_version: 3
108
75
  summary: The library that will eventually power the web application of the same name.
109
76
  test_files:
110
- - !binary |-
111
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X2FsY29ob2wucmI=
112
- - !binary |-
113
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X2NhbG9yaWVzLnJi
114
- - !binary |-
115
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X2hvcHMucmI=
116
- - !binary |-
117
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X21hc2gucmI=
118
- - !binary |-
119
- dGVzdC9jYWxjdWxhdG9ycy90ZXN0X3llYXN0LnJi
120
- - !binary |-
121
- dGVzdC9jb252ZXJzaW9ucy90ZXN0X2V4dHJhY3QucmI=
122
- - !binary |-
123
- dGVzdC9jb252ZXJzaW9ucy90ZXN0X21hc3MucmI=
124
- - !binary |-
125
- dGVzdC9jb252ZXJzaW9ucy90ZXN0X3RlbXBlcmF0dXJlLnJi
126
- - !binary |-
127
- dGVzdC9jb252ZXJzaW9ucy90ZXN0X3ZvbHVtZS5yYg==
128
- - !binary |-
129
- dGVzdC90ZXN0X2hlbHBlci5yYg==
130
- has_rdoc:
131
- ...
77
+ - test/calculators/test_alcohol.rb
78
+ - test/calculators/test_calories.rb
79
+ - test/calculators/test_hops.rb
80
+ - test/calculators/test_mash.rb
81
+ - test/calculators/test_yeast.rb
82
+ - test/conversions/test_extract.rb
83
+ - test/conversions/test_mass.rb
84
+ - test/conversions/test_temperature.rb
85
+ - test/conversions/test_volume.rb
86
+ - test/test_helper.rb
87
+ has_rdoc: