forked from haf/logirel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogirel.gemspec
42 lines (36 loc) · 1.66 KB
/
logirel.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "logirel/version"
Gem::Specification.new do |s|
s.name = "logirel"
s.version = SemVer.find.format "%M.%m.%p"
s.platform = Gem::Platform::RUBY
s.authors = ["Henrik Feldt"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/haf/logirel"
s.summary = %q{Logirel's a best-shot for scaffolding versioning for a .Net solution.}
s.description = %q{The gem works by having as its dependencies
everything you need to get started with OSS and proprietary .Net coding.
The aim of the gem is to allow developers to get up and running quickly
and provide a nice way of converting a msbuild/VSS/svn project to github and rake.
}
s.rubyforge_project = "logirel"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rspec", "~> 2.6.0"
s.add_development_dependency "memoize"
s.add_development_dependency "devver-construct"
s.add_dependency "albacore", "~> 0.2.7"
s.add_dependency "semver2", "~> 2.0.0"
s.add_dependency "bundler", "~> 1.0.14"
s.add_dependency "thor", "~> 0.14.6"
s.add_dependency "uuidtools", "~> 2.1.2"
s.add_dependency "nokogiri", "~>1.4.4"
s.add_dependency "rubyzip", "~>0.9.4"
s.requirements << '.Net or Mono installation'
s.requirements << 'xbuild (on linux) or msbuild (on windows) for csproj files'
s.requirements << 'Access to the internet w/o a proxy! ;)'
end