-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Antti Pitkanen
committed
Sep 5, 2014
1 parent
1f88f40
commit 045cd33
Showing
3 changed files
with
69 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters