dlt-mosh 0.2.1 → 0.2.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.
- data/README +2 -2
- data/{mosh.rb → lib/mosh.rb} +0 -0
- data/mosh.gemspec +2 -2
- data/specs/mosh_spec.rb +1 -1
- metadata +2 -2
data/README
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
= Mosh (My Own Hash With Methods)
|
|
2
2
|
|
|
3
|
-
http://github.com/dlt/
|
|
3
|
+
http://github.com/dlt/mosh
|
|
4
4
|
|
|
5
5
|
== DESCRIPTION:
|
|
6
6
|
|
|
@@ -29,7 +29,7 @@ Gem:
|
|
|
29
29
|
Mosh is hosted on the GitHub gem repository, so if you haven't already:
|
|
30
30
|
|
|
31
31
|
gem sources -a http://gems.github.com/
|
|
32
|
-
sudo gem install dlt-
|
|
32
|
+
sudo gem install dlt-mosh
|
|
33
33
|
|
|
34
34
|
Git:
|
|
35
35
|
|
data/{mosh.rb → lib/mosh.rb}
RENAMED
|
File without changes
|
data/mosh.gemspec
CHANGED
|
@@ -2,11 +2,11 @@ Gem::Specification.new do |s|
|
|
|
2
2
|
s.name = "mosh"
|
|
3
3
|
s.summary = "A hash extended with methods for easy access to values. Inspired by Mash."
|
|
4
4
|
s.description = "A hash extended with methods for easy access to values. Inspired by Mash."
|
|
5
|
-
s.version = "0.2.
|
|
5
|
+
s.version = "0.2.2"
|
|
6
6
|
s.date = "2009-03-07"
|
|
7
7
|
s.email = "daltojr@gmail.com"
|
|
8
8
|
s.homepage = "http://github.com/dlt/Mosh"
|
|
9
9
|
s.has_rdoc = false
|
|
10
10
|
s.authors = ["Dalto Curvelano Jr"]
|
|
11
|
-
s.files = ["README", "mosh.gemspec", "mosh.rb", "specs/mosh_spec.rb"]
|
|
11
|
+
s.files = ["README", "mosh.gemspec", "lib/mosh.rb", "specs/mosh_spec.rb"]
|
|
12
12
|
end
|
data/specs/mosh_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dlt-mosh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dalto Curvelano Jr
|
|
@@ -24,7 +24,7 @@ extra_rdoc_files: []
|
|
|
24
24
|
files:
|
|
25
25
|
- README
|
|
26
26
|
- mosh.gemspec
|
|
27
|
-
- mosh.rb
|
|
27
|
+
- lib/mosh.rb
|
|
28
28
|
- specs/mosh_spec.rb
|
|
29
29
|
has_rdoc: false
|
|
30
30
|
homepage: http://github.com/dlt/Mosh
|