dimma 1.0.0 → 1.0.1
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/README.markdown +9 -1
- data/VERSION +1 -1
- data/dimma.gemspec +3 -3
- data/lib/{Dimma.rb → dimma.rb} +1 -1
- metadata +5 -5
data/README.markdown
CHANGED
@@ -24,6 +24,14 @@ Excellent question! This is how:
|
|
24
24
|
|
25
25
|
Really? Yeah, really! For more advanced usage I suggest you [read the documentation](http://rdoc.info/projects/Burgestrand/Dimma).
|
26
26
|
|
27
|
+
Yeah, yeah… and installing it?
|
28
|
+
------------------------------
|
29
|
+
There are several alternatives! Far easiest is if you are using
|
30
|
+
[Rubygems](http://rubygems.org/): `gem install dimma`.
|
31
|
+
|
32
|
+
If you are not I assume you know what you are doing.
|
33
|
+
|
27
34
|
Miscellaneous notes
|
28
35
|
-------------------
|
29
|
-
- Dimma uses [Semantic Versioning](http://semver.org/) as of version v1.0.0!
|
36
|
+
- Dimma uses [Semantic Versioning](http://semver.org/) as of version v1.0.0!
|
37
|
+
- Dimma is completely *rubygems agnostic* — it assumes all required libraries are available, but does not care how.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
data/dimma.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{dimma}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Kim Burgestrand"]
|
12
|
-
s.date = %q{2010-07-
|
12
|
+
s.date = %q{2010-07-31}
|
13
13
|
s.email = %q{kim@burgestrand.se}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"LICENSE",
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
"Rakefile",
|
24
24
|
"VERSION",
|
25
25
|
"dimma.gemspec",
|
26
|
-
"lib/
|
26
|
+
"lib/dimma.rb",
|
27
27
|
"spec/dimma_spec.rb",
|
28
28
|
"spec/spec.opts",
|
29
29
|
"spec/spec_helper.rb"
|
data/lib/{Dimma.rb → dimma.rb}
RENAMED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dimma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Kim Burgestrand
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-07-
|
18
|
+
date: 2010-07-31 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -107,7 +107,7 @@ files:
|
|
107
107
|
- Rakefile
|
108
108
|
- VERSION
|
109
109
|
- dimma.gemspec
|
110
|
-
- lib/
|
110
|
+
- lib/dimma.rb
|
111
111
|
- spec/dimma_spec.rb
|
112
112
|
- spec/spec.opts
|
113
113
|
- spec/spec_helper.rb
|