midna 0.2.0 → 0.2.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/Rakefile +2 -1
- data/VERSION +1 -1
- data/midna.gemspec +5 -2
- metadata +18 -4
data/Rakefile
CHANGED
|
@@ -6,11 +6,12 @@ begin
|
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
7
|
gem.name = "midna"
|
|
8
8
|
gem.summary = %Q{Ruby interface to the Midna API}
|
|
9
|
-
gem.description = %Q{This gem chats with the Midna API so you don
|
|
9
|
+
gem.description = %Q{This gem chats with the Midna API so you don’t have to. It will give you objects in the Midna namespace, which you can query like Active Record. All of these methods will return hashes or arrays of hashes.}
|
|
10
10
|
gem.email = "joost@spacebabies.nl"
|
|
11
11
|
gem.homepage = "http://github.com/tilsammans/midna"
|
|
12
12
|
gem.authors = ["Joost Baaij"]
|
|
13
13
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
|
14
|
+
gem.add_dependency 'httparty'
|
|
14
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
16
|
end
|
|
16
17
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/midna.gemspec
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{midna}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Joost Baaij"]
|
|
12
12
|
s.date = %q{2010-08-06}
|
|
13
|
-
s.description = %q{This gem chats with the Midna API so you don
|
|
13
|
+
s.description = %q{This gem chats with the Midna API so you don’t have to. It will give you objects in the Midna namespace, which you can query like Active Record. All of these methods will return hashes or arrays of hashes.}
|
|
14
14
|
s.email = %q{joost@spacebabies.nl}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE",
|
|
@@ -50,11 +50,14 @@ Gem::Specification.new do |s|
|
|
|
50
50
|
|
|
51
51
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
52
52
|
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
53
|
+
s.add_runtime_dependency(%q<httparty>, [">= 0"])
|
|
53
54
|
else
|
|
54
55
|
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
56
|
+
s.add_dependency(%q<httparty>, [">= 0"])
|
|
55
57
|
end
|
|
56
58
|
else
|
|
57
59
|
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
60
|
+
s.add_dependency(%q<httparty>, [">= 0"])
|
|
58
61
|
end
|
|
59
62
|
end
|
|
60
63
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: midna
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.2.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Joost Baaij
|
|
@@ -34,7 +34,21 @@ dependencies:
|
|
|
34
34
|
version: 1.2.9
|
|
35
35
|
type: :development
|
|
36
36
|
version_requirements: *id001
|
|
37
|
-
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
name: httparty
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 3
|
|
46
|
+
segments:
|
|
47
|
+
- 0
|
|
48
|
+
version: "0"
|
|
49
|
+
type: :runtime
|
|
50
|
+
version_requirements: *id002
|
|
51
|
+
description: "This gem chats with the Midna API so you don\xE2\x80\x99t have to. It will give you objects in the Midna namespace, which you can query like Active Record. All of these methods will return hashes or arrays of hashes."
|
|
38
52
|
email: joost@spacebabies.nl
|
|
39
53
|
executables: []
|
|
40
54
|
|