shirts 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 756f7c222bcb9cc418032eff42b66dd413a9360b
4
+ data.tar.gz: 66a6b613e654c0ed613838123374f0a63de856c6
5
+ SHA512:
6
+ metadata.gz: 0a12fc83ff2bf395c91a6f62e2f5e75dc3890f34b6a9d24b5672ffe59b48392ca1e1b29273333a7a6e1111d5002c764a1304f83c3c0e9ed37c8249f68fbf8065
7
+ data.tar.gz: efdfc3409f7a1325d6e1259cf4b21d20e28db5eb8002300916be215a09deed7dd518773a0a2610def26e89970e9a372f9cc39c8116208adb9360c71f1d2aa02a
data/.document ADDED
@@ -0,0 +1,3 @@
1
+ lib/**/*.rb
2
+ -
3
+ LICENSE.md
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ CHANGELOG
2
+ =========
3
+
4
+ 0.0.1
5
+ -----
6
+
7
+ * Create initial project files.
data/LICENSE.md ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License
2
+ ===============
3
+
4
+ Copyright (c) 2013 Zachary Latta
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ shirts
2
+ ======
3
+
4
+ A rubylicious wrapper around the shirts.io API.
data/Rakefile ADDED
File without changes
data/lib/shirts.rb ADDED
@@ -0,0 +1,4 @@
1
+ module Shirts
2
+ class << self
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module Shirts
2
+ VERSION = "0.0.1" unless defined?(Octokit::VERSION)
3
+ end
data/shirts.gemspec ADDED
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'shirts/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.add_development_dependency 'bundler', '~> 1.0'
8
+
9
+ spec.add_dependency 'addressable', '~> 2.3.4'
10
+ spec.add_dependency 'faraday', '~> 0.8.7'
11
+ spec.add_dependency 'faraday_middleware', '~> 0.9.0'
12
+ spec.add_dependency 'multi_json', '~> 1.3'
13
+
14
+ spec.authors = ['Zach Latta']
15
+ spec.description = %q{A rubylicious wrapper around the shirts.io API}
16
+ spec.email = ['zchlatta@gmail.com']
17
+
18
+ spec.files = %w(.document CHANGELOG.md LICENSE.md README.md
19
+ Rakefile shirts.gemspec)
20
+ spec.files += Dir.glob('lib/**/*.rb')
21
+ spec.files += Dir.glob('spec/**/*')
22
+
23
+ spec.homepage = 'https://github.com/zachlatta/shirts'
24
+ spec.licenses = ['MIT']
25
+
26
+ spec.name = 'shirts'
27
+ spec.require_paths = ['lib']
28
+ spec.required_rubygems_version = '>= 1.3.5'
29
+ spec.summary = spec.description
30
+ spec.test_files = Dir.glob('spec/**/*')
31
+ spec.version = Shirts::VERSION
32
+ end
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shirts
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Zach Latta
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-06-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: addressable
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 2.3.4
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 2.3.4
41
+ - !ruby/object:Gem::Dependency
42
+ name: faraday
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 0.8.7
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 0.8.7
55
+ - !ruby/object:Gem::Dependency
56
+ name: faraday_middleware
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 0.9.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: 0.9.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: multi_json
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: '1.3'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: '1.3'
83
+ description: A rubylicious wrapper around the shirts.io API
84
+ email:
85
+ - zchlatta@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - .document
91
+ - CHANGELOG.md
92
+ - LICENSE.md
93
+ - README.md
94
+ - Rakefile
95
+ - shirts.gemspec
96
+ - lib/shirts/version.rb
97
+ - lib/shirts.rb
98
+ homepage: https://github.com/zachlatta/shirts
99
+ licenses:
100
+ - MIT
101
+ metadata: {}
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - '>='
114
+ - !ruby/object:Gem::Version
115
+ version: 1.3.5
116
+ requirements: []
117
+ rubyforge_project:
118
+ rubygems_version: 2.0.3
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: A rubylicious wrapper around the shirts.io API
122
+ test_files: []