outside-in 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.
Files changed (6) hide show
  1. data/README.md +7 -7
  2. data/Rakefile +2 -2
  3. data/VERSION +1 -1
  4. data/outside-in.gemspec +38 -29
  5. metadata +55 -19
  6. data/.gitignore +0 -4
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
- Ruby SDK for the [Outside.in API](http://developers.outside.in/)
1
+ Ruby SDK for the [Outside.in API](http://developers.patch.com/)
2
2
 
3
3
  ## Prerequisites
4
4
 
5
5
  ### Developer account
6
6
 
7
- To make API requests, register for an account at [developers.outside.in](http://developers.outside.in/) to receive a developer key and the shared secret you'll use with the key to sign requests.
7
+ To make API requests, register for an account at [developers.patch.com](http://developers.patch.com/) to receive a developer key and the shared secret you'll use with the key to sign requests.
8
8
 
9
9
  ### Dependencies
10
10
 
@@ -71,7 +71,7 @@ Gem dependencies are managed with [Bundler](http://gembundler.com/). Install the
71
71
  "98653b8d-fa8f-4d50-93b2-f3977a81f40c", # Brooklyn, Jacksonville, FL
72
72
  ])
73
73
 
74
- See [the class docs](http://rdoc.info/github/outsidein/api-rb/master/frames) for more information.
74
+ See [the class docs](http://rdoc.info/github/patch-engineering/api-rb/master/frames) for more information.
75
75
 
76
76
  ## CLI
77
77
 
@@ -95,7 +95,7 @@ See which options are defined for a particular task with this command (replacing
95
95
 
96
96
  ## Help
97
97
 
98
- * Source code: [http://github.com/outsidein/api-rb](http://github.com/outsidein/api-rb)
99
- * Class docs: [http://rdoc.info/github/outsidein/api-rb/master/frames](http://rdoc.info/github/outsidein/api-rb/master/frames)
100
- * General API docs: [http://developers.outside.in/docs](http://developers.outside.in/docs)
101
- * Post questions in the help forum: [http://developers.outside.in/forum](http://developers.outside.in/forum)
98
+ * Source code: [http://github.com/patch-engineering/api-rb](http://github.com/patch-engineering/api-rb)
99
+ * Class docs: [http://rdoc.info/github/patch-engineering/api-rb/master/frames](http://rdoc.info/github/patch-engineering/api-rb/master/frames)
100
+ * General API docs: [http://developers.patch.com/docs](http://developers.patch.com/docs)
101
+ * Post questions in the help forum: [http://developers.patch.com/forum](http://developers.patch.com/forum)
data/Rakefile CHANGED
@@ -3,8 +3,8 @@ begin
3
3
  Jeweler::Tasks.new do |gemspec|
4
4
  gemspec.name = "outside-in"
5
5
  gemspec.summary = "Ruby SDK for the Outside.in API"
6
- gemspec.email = "brian@outside.in"
7
- gemspec.homepage = "http://github.com/outsidein/api-rb"
6
+ gemspec.email = "support@patch.com"
7
+ gemspec.homepage = "http://github.com/patch-engineering/api-rb"
8
8
  gemspec.authors = ["Brian Moseley"]
9
9
  end
10
10
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
data/outside-in.gemspec CHANGED
@@ -1,55 +1,64 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{outside-in}
8
- s.version = "1.0.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 = ["Brian Moseley"]
12
- s.date = %q{2010-09-20}
13
- s.email = %q{brian@outside.in}
12
+ s.date = %q{2012-03-20}
13
+ s.email = %q{support@patch.com}
14
14
  s.extra_rdoc_files = [
15
15
  "README.md"
16
16
  ]
17
17
  s.files = [
18
- ".gitignore",
19
- "Gemfile",
20
- "Gemfile.lock",
21
- "HISTORY",
22
- "README.md",
23
- "Rakefile",
24
- "VERSION",
25
- "config/oi.sample.yml",
26
- "lib/outside_in.rb",
27
- "lib/outside_in/base.rb",
28
- "lib/outside_in/category.rb",
29
- "lib/outside_in/location.rb",
30
- "lib/outside_in/resource/base.rb",
31
- "lib/outside_in/resource/location_finder.rb",
32
- "lib/outside_in/resource/query_params.rb",
33
- "lib/outside_in/resource/story_finder.rb",
34
- "lib/outside_in/story.rb",
35
- "lib/outside_in/tag.rb",
36
- "outside-in.gemspec",
37
- "tasks/oi.thor"
18
+ "Gemfile",
19
+ "Gemfile.lock",
20
+ "HISTORY",
21
+ "README.md",
22
+ "Rakefile",
23
+ "VERSION",
24
+ "config/oi.sample.yml",
25
+ "lib/outside_in.rb",
26
+ "lib/outside_in/base.rb",
27
+ "lib/outside_in/category.rb",
28
+ "lib/outside_in/location.rb",
29
+ "lib/outside_in/resource/base.rb",
30
+ "lib/outside_in/resource/location_finder.rb",
31
+ "lib/outside_in/resource/query_params.rb",
32
+ "lib/outside_in/resource/story_finder.rb",
33
+ "lib/outside_in/story.rb",
34
+ "lib/outside_in/tag.rb",
35
+ "outside-in.gemspec",
36
+ "tasks/oi.thor"
38
37
  ]
39
- s.homepage = %q{http://github.com/outsidein/api-rb}
40
- s.rdoc_options = ["--charset=UTF-8"]
38
+ s.homepage = %q{http://github.com/patch-engineering/api-rb}
41
39
  s.require_paths = ["lib"]
42
- s.rubygems_version = %q{1.3.6}
40
+ s.rubygems_version = %q{1.6.2}
43
41
  s.summary = %q{Ruby SDK for the Outside.in API}
44
42
 
45
43
  if s.respond_to? :specification_version then
46
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
47
44
  s.specification_version = 3
48
45
 
49
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
46
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
+ s.add_runtime_dependency(%q<activesupport>, ["= 3.0.0"])
48
+ s.add_runtime_dependency(%q<httparty>, [">= 0"])
49
+ s.add_runtime_dependency(%q<json>, [">= 0"])
50
+ s.add_runtime_dependency(%q<simple_uuid>, [">= 0"])
50
51
  else
52
+ s.add_dependency(%q<activesupport>, ["= 3.0.0"])
53
+ s.add_dependency(%q<httparty>, [">= 0"])
54
+ s.add_dependency(%q<json>, [">= 0"])
55
+ s.add_dependency(%q<simple_uuid>, [">= 0"])
51
56
  end
52
57
  else
58
+ s.add_dependency(%q<activesupport>, ["= 3.0.0"])
59
+ s.add_dependency(%q<httparty>, [">= 0"])
60
+ s.add_dependency(%q<json>, [">= 0"])
61
+ s.add_dependency(%q<simple_uuid>, [">= 0"])
53
62
  end
54
63
  end
55
64
 
metadata CHANGED
@@ -1,12 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: outside-in
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 0
8
- - 0
9
- version: 1.0.0
4
+ prerelease:
5
+ version: 1.0.1
10
6
  platform: ruby
11
7
  authors:
12
8
  - Brian Moseley
@@ -14,12 +10,55 @@ autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
12
 
17
- date: 2010-09-20 00:00:00 -04:00
13
+ date: 2012-03-20 00:00:00 -04:00
18
14
  default_executable:
19
- dependencies: []
20
-
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: activesupport
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - "="
22
+ - !ruby/object:Gem::Version
23
+ version: 3.0.0
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: httparty
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: "0"
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: *id002
38
+ - !ruby/object:Gem::Dependency
39
+ name: json
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ type: :runtime
47
+ prerelease: false
48
+ version_requirements: *id003
49
+ - !ruby/object:Gem::Dependency
50
+ name: simple_uuid
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: "0"
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: *id004
21
60
  description:
22
- email: brian@outside.in
61
+ email: support@patch.com
23
62
  executables: []
24
63
 
25
64
  extensions: []
@@ -27,7 +66,6 @@ extensions: []
27
66
  extra_rdoc_files:
28
67
  - README.md
29
68
  files:
30
- - .gitignore
31
69
  - Gemfile
32
70
  - Gemfile.lock
33
71
  - HISTORY
@@ -48,32 +86,30 @@ files:
48
86
  - outside-in.gemspec
49
87
  - tasks/oi.thor
50
88
  has_rdoc: true
51
- homepage: http://github.com/outsidein/api-rb
89
+ homepage: http://github.com/patch-engineering/api-rb
52
90
  licenses: []
53
91
 
54
92
  post_install_message:
55
- rdoc_options:
56
- - --charset=UTF-8
93
+ rdoc_options: []
94
+
57
95
  require_paths:
58
96
  - lib
59
97
  required_ruby_version: !ruby/object:Gem::Requirement
98
+ none: false
60
99
  requirements:
61
100
  - - ">="
62
101
  - !ruby/object:Gem::Version
63
- segments:
64
- - 0
65
102
  version: "0"
66
103
  required_rubygems_version: !ruby/object:Gem::Requirement
104
+ none: false
67
105
  requirements:
68
106
  - - ">="
69
107
  - !ruby/object:Gem::Version
70
- segments:
71
- - 0
72
108
  version: "0"
73
109
  requirements: []
74
110
 
75
111
  rubyforge_project:
76
- rubygems_version: 1.3.6
112
+ rubygems_version: 1.6.2
77
113
  signing_key:
78
114
  specification_version: 3
79
115
  summary: Ruby SDK for the Outside.in API
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- .yardoc
2
- *.gem
3
- config/oi.yml
4
- doc