spicycode-the_metric_system 2.3.4 → 2.3.5
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/.gitignore +1 -0
- data/Rakefile +3 -3
- data/VERSION +1 -1
- data/the_metric_system.gemspec +70 -0
- metadata +5 -4
data/.gitignore
CHANGED
data/Rakefile
CHANGED
|
@@ -5,9 +5,9 @@ begin
|
|
|
5
5
|
require 'jeweler'
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
7
|
gem.name = "the_metric_system"
|
|
8
|
-
gem.summary = %Q{
|
|
9
|
-
gem.description = %Q{
|
|
10
|
-
gem.email = "chad@
|
|
8
|
+
gem.summary = %Q{ The metric system is an international decimalised system of measurement, first adopted by France in 1791.}
|
|
9
|
+
gem.description = %Q{ The metric system is an international decimalised system of measurement, first adopted by France in 1791.}
|
|
10
|
+
gem.email = "chad.humphries@gmail.com"
|
|
11
11
|
gem.homepage = "http://github.com/spicycode/the_metric_system"
|
|
12
12
|
gem.authors = ["Chad Humphries"]
|
|
13
13
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.3.
|
|
1
|
+
2.3.5
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{the_metric_system}
|
|
8
|
+
s.version = "2.3.5"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Chad Humphries"]
|
|
12
|
+
s.date = %q{2009-08-23}
|
|
13
|
+
s.description = %q{ The metric system is an international decimalised system of measurement, first adopted by France in 1791.}
|
|
14
|
+
s.email = %q{chad.humphries@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.md"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
".treasure_map.rb",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"README.md",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"lib/the_metric_system.rb",
|
|
28
|
+
"lib/the_metric_system/units_of_measure/flay_units.rb",
|
|
29
|
+
"lib/the_metric_system/units_of_measure/flog_units.rb",
|
|
30
|
+
"spec/spec.opts",
|
|
31
|
+
"spec/spec_helper.rb",
|
|
32
|
+
"spec/the_metric_system/units_of_measure/flay_units_spec.rb",
|
|
33
|
+
"spec/the_metric_system/units_of_measure/flog_units_spec.rb",
|
|
34
|
+
"spec/the_metric_system_spec.rb",
|
|
35
|
+
"the_metric_system.gemspec"
|
|
36
|
+
]
|
|
37
|
+
s.homepage = %q{http://github.com/spicycode/the_metric_system}
|
|
38
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
39
|
+
s.require_paths = ["lib"]
|
|
40
|
+
s.rubygems_version = %q{1.3.5}
|
|
41
|
+
s.summary = %q{The metric system is an international decimalised system of measurement, first adopted by France in 1791.}
|
|
42
|
+
s.test_files = [
|
|
43
|
+
"spec/spec_helper.rb",
|
|
44
|
+
"spec/the_metric_system/units_of_measure/flay_units_spec.rb",
|
|
45
|
+
"spec/the_metric_system/units_of_measure/flog_units_spec.rb",
|
|
46
|
+
"spec/the_metric_system_spec.rb"
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
if s.respond_to? :specification_version then
|
|
50
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
51
|
+
s.specification_version = 3
|
|
52
|
+
|
|
53
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
54
|
+
s.add_development_dependency(%q<rspec>, [">= 0"])
|
|
55
|
+
s.add_development_dependency(%q<yard>, [">= 0"])
|
|
56
|
+
s.add_runtime_dependency(%q<flog>, [">= 2.2.0"])
|
|
57
|
+
s.add_runtime_dependency(%q<flay>, [">= 1.4.0"])
|
|
58
|
+
else
|
|
59
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
60
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
|
61
|
+
s.add_dependency(%q<flog>, [">= 2.2.0"])
|
|
62
|
+
s.add_dependency(%q<flay>, [">= 1.4.0"])
|
|
63
|
+
end
|
|
64
|
+
else
|
|
65
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
|
66
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
|
67
|
+
s.add_dependency(%q<flog>, [">= 2.2.0"])
|
|
68
|
+
s.add_dependency(%q<flay>, [">= 1.4.0"])
|
|
69
|
+
end
|
|
70
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spicycode-the_metric_system
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chad Humphries
|
|
@@ -52,8 +52,8 @@ dependencies:
|
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
53
|
version: 1.4.0
|
|
54
54
|
version:
|
|
55
|
-
description:
|
|
56
|
-
email: chad@
|
|
55
|
+
description: The metric system is an international decimalised system of measurement, first adopted by France in 1791.
|
|
56
|
+
email: chad.humphries@gmail.com
|
|
57
57
|
executables: []
|
|
58
58
|
|
|
59
59
|
extensions: []
|
|
@@ -77,6 +77,7 @@ files:
|
|
|
77
77
|
- spec/the_metric_system/units_of_measure/flay_units_spec.rb
|
|
78
78
|
- spec/the_metric_system/units_of_measure/flog_units_spec.rb
|
|
79
79
|
- spec/the_metric_system_spec.rb
|
|
80
|
+
- the_metric_system.gemspec
|
|
80
81
|
has_rdoc: false
|
|
81
82
|
homepage: http://github.com/spicycode/the_metric_system
|
|
82
83
|
licenses:
|
|
@@ -103,7 +104,7 @@ rubyforge_project:
|
|
|
103
104
|
rubygems_version: 1.3.5
|
|
104
105
|
signing_key:
|
|
105
106
|
specification_version: 3
|
|
106
|
-
summary:
|
|
107
|
+
summary: The metric system is an international decimalised system of measurement, first adopted by France in 1791.
|
|
107
108
|
test_files:
|
|
108
109
|
- spec/spec_helper.rb
|
|
109
110
|
- spec/the_metric_system/units_of_measure/flay_units_spec.rb
|