openamplify 0.1.0 → 0.1.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 +7 -0
- data/README.rdoc +4 -0
- data/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/openamplify.gemspec +48 -0
- metadata +10 -7
data/.gitignore
ADDED
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
|
@@ -10,7 +10,7 @@ begin
|
|
|
10
10
|
gem.email = "rubyoncloud@gmail.com"
|
|
11
11
|
gem.homepage = "http://github.com/gregmoreno/openamplify"
|
|
12
12
|
gem.authors = ["Greg Moreno"]
|
|
13
|
-
gem.add_dependency
|
|
13
|
+
gem.add_dependency "json", "~>1.2"
|
|
14
14
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
15
|
end
|
|
16
16
|
Jeweler::GemcutterTasks.new
|
data/VERSION.yml
CHANGED
data/openamplify.gemspec
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
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{openamplify}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Greg Moreno"]
|
|
12
|
+
s.date = %q{2010-06-05}
|
|
13
|
+
s.description = %q{The OpenAmplify API reads text you supply and returns linguistic data explaining and classifying the content.}
|
|
14
|
+
s.email = %q{rubyoncloud@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".gitignore",
|
|
21
|
+
"History",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION.yml",
|
|
26
|
+
"lib/openamplify.rb",
|
|
27
|
+
"openamplify.gemspec"
|
|
28
|
+
]
|
|
29
|
+
s.homepage = %q{http://github.com/gregmoreno/openamplify}
|
|
30
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
31
|
+
s.require_paths = ["lib"]
|
|
32
|
+
s.rubygems_version = %q{1.3.7}
|
|
33
|
+
s.summary = %q{Wrapper for the OpenAmplify API}
|
|
34
|
+
|
|
35
|
+
if s.respond_to? :specification_version then
|
|
36
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
37
|
+
s.specification_version = 3
|
|
38
|
+
|
|
39
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
40
|
+
s.add_runtime_dependency(%q<json>, ["~> 1.2"])
|
|
41
|
+
else
|
|
42
|
+
s.add_dependency(%q<json>, ["~> 1.2"])
|
|
43
|
+
end
|
|
44
|
+
else
|
|
45
|
+
s.add_dependency(%q<json>, ["~> 1.2"])
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openamplify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Greg Moreno
|
|
@@ -24,12 +24,13 @@ dependencies:
|
|
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
25
|
none: false
|
|
26
26
|
requirements:
|
|
27
|
-
- -
|
|
27
|
+
- - ~>
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash:
|
|
29
|
+
hash: 11
|
|
30
30
|
segments:
|
|
31
|
-
-
|
|
32
|
-
|
|
31
|
+
- 1
|
|
32
|
+
- 2
|
|
33
|
+
version: "1.2"
|
|
33
34
|
type: :runtime
|
|
34
35
|
version_requirements: *id001
|
|
35
36
|
description: The OpenAmplify API reads text you supply and returns linguistic data explaining and classifying the content.
|
|
@@ -42,12 +43,14 @@ extra_rdoc_files:
|
|
|
42
43
|
- LICENSE
|
|
43
44
|
- README.rdoc
|
|
44
45
|
files:
|
|
46
|
+
- .gitignore
|
|
45
47
|
- History
|
|
46
48
|
- LICENSE
|
|
47
49
|
- README.rdoc
|
|
48
50
|
- Rakefile
|
|
49
51
|
- VERSION.yml
|
|
50
52
|
- lib/openamplify.rb
|
|
53
|
+
- openamplify.gemspec
|
|
51
54
|
has_rdoc: true
|
|
52
55
|
homepage: http://github.com/gregmoreno/openamplify
|
|
53
56
|
licenses: []
|