Skip to content

Commit 4e4f203

Browse files
committed
initial commit
0 parents  commit 4e4f203

File tree

15 files changed

+127
-0
lines changed

15 files changed

+127
-0
lines changed

.circle-ruby

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2.3.1
2+
2.2.5
3+
2.1.10

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pkg/*.gem
2+
coverage/
3+
.coveralls.yml
4+
.bundle
5+
Gemfile.lock

.prospectus

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
item do
2+
expected do
3+
static
4+
set 'green'
5+
end
6+
7+
actual do
8+
gemnasium
9+
slug 'akerl/archpackager'
10+
end
11+
end

.rspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--format Fuubar
2+
--color

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Encoding:
2+
Enabled: false

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
gemspec
4+

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Les Aker
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.
22+

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
archpackager
2+
=========
3+
4+
[![Gem Version](https://img.shields.io/gem/v/archpackager.svg)](https://rubygems.org/gems/archpackager)
5+
[![Dependency Status](https://img.shields.io/gemnasium/akerl/archpackager.svg)](https://gemnasium.com/akerl/archpackager)
6+
[![Build Status](https://img.shields.io/circleci/project/akerl/archpackager.svg)](https://circleci.com/gh/akerl/archpackager)
7+
[![Coverage Status](https://img.shields.io/codecov/c/github/akerl/archpackager.svg)](https://codecov.io/github/akerl/archpackager)
8+
[![Code Quality](https://img.shields.io/codacy/.svg)](https://www.codacy.com/app/akerl/archpackager)
9+
[![MIT Licensed](https://img.shields.io/badge/license-MIT-green.svg)](https://tldrlegal.com/license/mit-license)
10+
11+
DSL engine for building Arch packages
12+
13+
## Usage
14+
15+
## Installation
16+
17+
gem install archpackager
18+
19+
## License
20+
21+
archpackager is released under the MIT License. See the bundled LICENSE file for details.
22+

Rakefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
require 'bundler/gem_tasks'
2+
require 'rspec/core/rake_task'
3+
require 'rubocop/rake_task'
4+
5+
desc 'Run tests'
6+
RSpec::Core::RakeTask.new(:spec)
7+
8+
desc 'Run Rubocop on the gem'
9+
RuboCop::RakeTask.new(:rubocop) do |task|
10+
task.patterns = ['lib/**/*.rb', 'spec/**/*.rb', 'bin/*']
11+
task.fail_on_error = true
12+
end
13+
14+
task default: [:spec, :rubocop, :build, :install]

archpackager.gemspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Gem::Specification.new do |s|
2+
s.name = 'archpackager'
3+
s.version = '0.0.1'
4+
s.date = Time.now.strftime('%Y-%m-%d')
5+
6+
s.summary = 'DSL engine for building Arch packages'
7+
s.description = "DSL engine for building Arch packages"
8+
s.authors = ['Les Aker']
9+
s.email = 'me@lesaker.org'
10+
s.homepage = 'https://github.com/akerl/archpackager'
11+
s.license = 'MIT'
12+
13+
s.files = `git ls-files`.split
14+
s.test_files = `git ls-files spec/*`.split
15+
s.executables = ['archpackage']
16+
17+
s.add_dependency 'mercenary', '~> 0.3.4'
18+
19+
s.add_development_dependency 'rubocop', '~> 0.42.0'
20+
s.add_development_dependency 'rake', '~> 11.2.0'
21+
s.add_development_dependency 'codecov', '~> 0.1.1'
22+
s.add_development_dependency 'rspec', '~> 3.5.0'
23+
s.add_development_dependency 'fuubar', '~> 2.1.0'
24+
end

0 commit comments

Comments
 (0)