buildozer 1.0.0.dev1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <buildpath>
3
+ <buildpathentry kind="src" path="lib"/>
4
+ <buildpathentry kind="con" path="org.eclipse.dltk.launching.INTERPRETER_CONTAINER"/>
5
+ </buildpath>
@@ -0,0 +1,27 @@
1
+ # Handle line endings automatically for files detected as text
2
+ # and leave all files detected as binary untouched.
3
+ * text eol=lf
4
+
5
+ #
6
+ # The above will handle all files NOT found below
7
+ #
8
+ # These files are text and should be normalized (Convert crlf => lf)
9
+ Gemfile eol=lf
10
+ Rakefile eol=lf
11
+ Vagrantfile eol=lf
12
+ *.rb eol=lf
13
+ *.md eol=lf
14
+ *.gemspec eol=lf
15
+ *.lock eol=lf
16
+ *.txt eol=lf
17
+ *.yml eol=lf
18
+ *.yaml eol=lf
19
+ *.prefs eol=lf
20
+
21
+ # Eclipse specific files
22
+ *.project eol=lf
23
+ *.buildpath eol=lf
24
+
25
+ # These files are binary and should be left untouched
26
+ # (binary is a macro for -text -diff)
27
+ *.gem binary
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ .vagrant
7
+ Gemfile.lock
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/buildozer_debug.rb
13
+ lib/bundler/man
14
+ pkg
15
+ rdoc
16
+ spec/reports
17
+ test/tmp
18
+ test/version_tmp
19
+ tmp
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <projectDescription>
3
+ <name>buildozer</name>
4
+ <comment></comment>
5
+ <projects>
6
+ </projects>
7
+ <buildSpec>
8
+ <buildCommand>
9
+ <name>org.eclipse.dltk.core.scriptbuilder</name>
10
+ <arguments>
11
+ </arguments>
12
+ </buildCommand>
13
+ </buildSpec>
14
+ <natures>
15
+ <nature>org.eclipse.dltk.ruby.core.nature</nature>
16
+ </natures>
17
+ </projectDescription>
@@ -0,0 +1,3 @@
1
+ # 1.0.0 (unreleased)
2
+
3
+ * Initial commit
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in nugrant.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Matthieu Vachon
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ # Buildozer
2
+
3
+ Buildozer is an application that aims to ease the building
4
+ and packaging process of software.
5
+
6
+ With this application, and with the help of the fpm library,
7
+ you should be able to build and package any software like
8
+ a breeze in a fully automatic manner.
9
+
10
+ ## Installation
11
+
12
+ Use this command to install buildozer:
13
+
14
+ gem install buildozer
15
+
16
+ ## Usage
17
+
18
+ Coming soon ...
19
+
20
+ ## Contributing & Support
21
+
22
+ There is no direct way to contribute right now.
@@ -0,0 +1,9 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new do |task|
5
+ task.test_files = FileList['test/**/test*.rb']
6
+ end
7
+
8
+ desc "Run tests"
9
+ task :default => :test
@@ -0,0 +1,31 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ require 'buildozer/version'
6
+
7
+ Gem::Specification.new do |gem|
8
+ gem.name = "buildozer"
9
+ gem.version = Buildozer::VERSION
10
+ gem.authors = ["Matthieu Vachon"]
11
+ gem.email = ["matthieu.o.vachon@gmail.com"]
12
+ gem.homepage = "https://github.com/maoueh/buildozer"
13
+ gem.summary = "Application to build and package software."
14
+ gem.description = <<-EOF
15
+ Buildozer is an application that aims to ease the building
16
+ and packaging of software.
17
+
18
+ With this application, and with the help of the fpm library,
19
+ you should be able to build and package any software like
20
+ a breeze in a fully automatic manner.
21
+ EOF
22
+
23
+ gem.files = `git ls-files`.split($/)
24
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
25
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
26
+ gem.require_paths = ["lib"]
27
+
28
+ gem.add_dependency "fpm", "~> 0.4.29"
29
+
30
+ gem.add_development_dependency "rake", "~> 10.0.3"
31
+ end
@@ -0,0 +1,5 @@
1
+ require 'buildozer'
2
+
3
+ module Buildozer
4
+
5
+ end
@@ -0,0 +1,3 @@
1
+ module Buildozer
2
+ VERSION = "1.0.0.dev1"
3
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: buildozer
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.dev1
5
+ prerelease: 6
6
+ platform: ruby
7
+ authors:
8
+ - Matthieu Vachon
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-02-18 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: fpm
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.4.29
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.4.29
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 10.0.3
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 10.0.3
46
+ description: ! " Buildozer is an application that aims to ease the building\n
47
+ \ and packaging of software.\n\n With this application, and with the help
48
+ of the fpm library,\n you should be able to build and package any software like\n
49
+ \ a breeze in a fully automatic manner.\n"
50
+ email:
51
+ - matthieu.o.vachon@gmail.com
52
+ executables: []
53
+ extensions: []
54
+ extra_rdoc_files: []
55
+ files:
56
+ - .buildpath
57
+ - .gitattributes
58
+ - .gitignore
59
+ - .project
60
+ - CHANGELOG.md
61
+ - Gemfile
62
+ - LICENSE.txt
63
+ - README.md
64
+ - Rakefile
65
+ - buildozer.gemspec
66
+ - lib/buildozer.rb
67
+ - lib/buildozer/version.rb
68
+ homepage: https://github.com/maoueh/buildozer
69
+ licenses: []
70
+ post_install_message:
71
+ rdoc_options: []
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ none: false
76
+ requirements:
77
+ - - ! '>='
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ segments:
81
+ - 0
82
+ hash: -2658688478664212903
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ! '>'
87
+ - !ruby/object:Gem::Version
88
+ version: 1.3.1
89
+ requirements: []
90
+ rubyforge_project:
91
+ rubygems_version: 1.8.24
92
+ signing_key:
93
+ specification_version: 3
94
+ summary: Application to build and package software.
95
+ test_files: []