Skip to content

Commit

Permalink
Real gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Antti Pitkanen committed Sep 5, 2014
1 parent 1f88f40 commit 045cd33
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 12 deletions.
16 changes: 7 additions & 9 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
require 'jeweler'

Jeweler::Tasks.new do |s|
s.name = "jeweler"
s.executables = "jeweler"
s.summary = "Simple and opinionated helper for creating Rubygem projects on GitHub"
s.email = "[email protected]"
s.homepage = "http://github.com/technicalpickles/jeweler"
s.description = "Simple and opinionated helper for creating Rubygem projects on GitHub"
s.authors = ["Josh Nichols"]
s.files = FileList["[A-Z]*", "{bin,generators,lib,test}/**/*", 'lib/jeweler/templates/.gitignore']
s.add_dependency 'schacon-git'
s.name = "rally-wsapi"
s.summary = "Simple client for Rally WSAPI"
s.email = "[email protected]"
s.homepage = "http://github.com/flowdock/rally-wsapi"
s.description = "Simple client for Rally WSAPI"
s.authors = ["Antti Pitkänen"]
s.files = FileList["[A-Z]*", "{bin,generators,lib,test}/**/*"]
end
58 changes: 58 additions & 0 deletions rally-wsapi.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: rally-wsapi 0.0.1 ruby lib

Gem::Specification.new do |s|
s.name = "rally-wsapi"
s.version = "0.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Antti Pitk\u{e4}nen"]
s.date = "2014-09-05"
s.description = "Simple client for Rally WSAPI"
s.email = "[email protected]"
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README.md",
"Rakefile",
"VERSION",
"lib/rally-wsapi.rb",
"lib/wsapi/mapper.rb",
"lib/wsapi/models/object.rb",
"lib/wsapi/models/project.rb",
"lib/wsapi/models/subscription.rb",
"lib/wsapi/models/user.rb",
"lib/wsapi/session.rb"
]
s.homepage = "http://github.com/flowdock/rally-wsapi"
s.rubygems_version = "2.2.1"
s.summary = "Simple client for Rally WSAPI"

if s.respond_to? :specification_version then
s.specification_version = 4

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rake>, [">= 0"])
s.add_runtime_dependency(%q<multi_json>, [">= 0"])
s.add_runtime_dependency(%q<faraday>, [">= 0"])
else
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<multi_json>, [">= 0"])
s.add_dependency(%q<faraday>, [">= 0"])
end
else
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<multi_json>, [">= 0"])
s.add_dependency(%q<faraday>, [">= 0"])
end
end

7 changes: 4 additions & 3 deletions wsapi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# stub: jeweler 0.0.1 ruby lib

Gem::Specification.new do |s|
s.name = "wsapi"
s.name = "rally-wsapi"
s.version = "0.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
Expand All @@ -29,9 +29,10 @@ Gem::Specification.new do |s|
"lib/wsapi/models/project.rb",
"lib/wsapi/models/subscription.rb",
"lib/wsapi/models/user.rb",
"lib/wsapi/session.rb"
"lib/wsapi/session.rb",
"lib/rally-wsapi.rb"
]
s.homepage = "http://github.com/flowdock/wsapi"
s.homepage = "http://github.com/flowdock/rally-wsapi"
s.rubygems_version = "2.2.1"
s.summary = "Simple client for Rally WSAPI"

Expand Down

0 comments on commit 045cd33

Please sign in to comment.