zypr 0.0.0.alpha.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'http://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in zypr.gemspec
4
+ gemspec
@@ -0,0 +1,5 @@
1
+ # zypr #
2
+
3
+ Ruby API wrapper for the zypr web service
4
+
5
+ ## Work in progress ##
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,5 @@
1
+ require "zypr/version"
2
+
3
+ module Zypr
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Zypr
2
+ VERSION = "0.0.0.alpha.1"
3
+ end
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/zypr/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Brian Cardarella"]
6
+ gem.email = ["bcardarella@gmail.com"]
7
+ gem.description = %q{API wrapper for zypr web service}
8
+ gem.summary = %q{API wrapper for zypr web service}
9
+ gem.homepage = "https://github.com/dockyard/zypr"
10
+
11
+ gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
12
+ gem.files = `git ls-files`.split("\n")
13
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
14
+ gem.name = "zypr"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Zypr::VERSION
17
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: zypr
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: 6
5
+ version: 0.0.0.alpha.1
6
+ platform: ruby
7
+ authors:
8
+ - Brian Cardarella
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-11-07 00:00:00 -05:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description: API wrapper for zypr web service
18
+ email:
19
+ - bcardarella@gmail.com
20
+ executables: []
21
+
22
+ extensions: []
23
+
24
+ extra_rdoc_files: []
25
+
26
+ files:
27
+ - .gitignore
28
+ - Gemfile
29
+ - README.md
30
+ - Rakefile
31
+ - lib/zypr.rb
32
+ - lib/zypr/version.rb
33
+ - zypr.gemspec
34
+ has_rdoc: true
35
+ homepage: https://github.com/dockyard/zypr
36
+ licenses: []
37
+
38
+ post_install_message:
39
+ rdoc_options: []
40
+
41
+ require_paths:
42
+ - lib
43
+ required_ruby_version: !ruby/object:Gem::Requirement
44
+ none: false
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: "0"
49
+ required_rubygems_version: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ">"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.3.1
55
+ requirements: []
56
+
57
+ rubyforge_project:
58
+ rubygems_version: 1.3.9.3
59
+ signing_key:
60
+ specification_version: 3
61
+ summary: API wrapper for zypr web service
62
+ test_files: []
63
+