jaconda 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/.gitignore +5 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/jaconda.gemspec +55 -0
- data/lib/jaconda.rb +1 -1
- metadata +5 -3
data/Rakefile
CHANGED
|
@@ -7,7 +7,7 @@ begin
|
|
|
7
7
|
gem.name = "jaconda"
|
|
8
8
|
gem.summary = "The official ruby wrapper for Jaconda API"
|
|
9
9
|
gem.email = "ant.mironov@gmail.com"
|
|
10
|
-
gem.homepage = "http://github.com/mironov/jaconda"
|
|
10
|
+
gem.homepage = "http://github.com/mironov/jaconda-api"
|
|
11
11
|
gem.authors = ["Anton Mironov"]
|
|
12
12
|
gem.add_dependency "activeresource"
|
|
13
13
|
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/jaconda.gemspec
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{jaconda}
|
|
8
|
+
s.version = "1.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Anton Mironov"]
|
|
12
|
+
s.date = %q{2010-03-24}
|
|
13
|
+
s.email = %q{ant.mironov@gmail.com}
|
|
14
|
+
s.extra_rdoc_files = [
|
|
15
|
+
"LICENSE",
|
|
16
|
+
"README.markdown"
|
|
17
|
+
]
|
|
18
|
+
s.files = [
|
|
19
|
+
".gitignore",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"README.markdown",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION",
|
|
24
|
+
"jaconda.gemspec",
|
|
25
|
+
"lib/jaconda.rb",
|
|
26
|
+
"test/helper.rb",
|
|
27
|
+
"test/test_jaconda.rb"
|
|
28
|
+
]
|
|
29
|
+
s.homepage = %q{http://github.com/mironov/jaconda-api}
|
|
30
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
31
|
+
s.require_paths = ["lib"]
|
|
32
|
+
s.rubygems_version = %q{1.3.6}
|
|
33
|
+
s.summary = %q{The official ruby wrapper for Jaconda API}
|
|
34
|
+
s.test_files = [
|
|
35
|
+
"test/helper.rb",
|
|
36
|
+
"test/test_jaconda.rb"
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
if s.respond_to? :specification_version then
|
|
40
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
41
|
+
s.specification_version = 3
|
|
42
|
+
|
|
43
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
44
|
+
s.add_runtime_dependency(%q<activeresource>, [">= 0"])
|
|
45
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
46
|
+
else
|
|
47
|
+
s.add_dependency(%q<activeresource>, [">= 0"])
|
|
48
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
49
|
+
end
|
|
50
|
+
else
|
|
51
|
+
s.add_dependency(%q<activeresource>, [">= 0"])
|
|
52
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
data/lib/jaconda.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 1.0.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.0.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Anton Mironov
|
|
@@ -51,15 +51,17 @@ extra_rdoc_files:
|
|
|
51
51
|
- LICENSE
|
|
52
52
|
- README.markdown
|
|
53
53
|
files:
|
|
54
|
+
- .gitignore
|
|
54
55
|
- LICENSE
|
|
55
56
|
- README.markdown
|
|
56
57
|
- Rakefile
|
|
57
58
|
- VERSION
|
|
59
|
+
- jaconda.gemspec
|
|
58
60
|
- lib/jaconda.rb
|
|
59
61
|
- test/helper.rb
|
|
60
62
|
- test/test_jaconda.rb
|
|
61
63
|
has_rdoc: true
|
|
62
|
-
homepage: http://github.com/mironov/jaconda
|
|
64
|
+
homepage: http://github.com/mironov/jaconda-api
|
|
63
65
|
licenses: []
|
|
64
66
|
|
|
65
67
|
post_install_message:
|