Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Gem skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
cbetta committed Jan 25, 2013
0 parents commit 819d0d4
Show file tree
Hide file tree
Showing 9 changed files with 75 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
pkg
1 change: 1 addition & 0 deletions .rvmrc
@@ -0,0 +1 @@
rvm use 1.9.3@primo --create
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source :rubygems

gemspec
14 changes: 14 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,14 @@
PATH
remote: .
specs:
primo (0.0.1)

GEM
remote: http://rubygems.org/
specs:

PLATFORMS
ruby

DEPENDENCIES
primo!
23 changes: 23 additions & 0 deletions LICENSE
@@ -0,0 +1,23 @@
Copyright (c) 2012 Cristiano Betta <cbetta@gmail.com>

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

10 changes: 10 additions & 0 deletions README.md
@@ -0,0 +1,10 @@
# Primo

## Release notes

* **0.0.1** Gem skeleton

## License

See [LICENSE](https://github.com/cbetta/primo/blob/master/LICENSE)

1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require "bundler/gem_tasks"
3 changes: 3 additions & 0 deletions lib/primo/version.rb
@@ -0,0 +1,3 @@
class Primo
VERSION = "0.0.1" unless defined? Primo::VERSION
end
19 changes: 19 additions & 0 deletions primo.gemspec
@@ -0,0 +1,19 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "primo/version"

Gem::Specification.new do |s|
s.name = "primo"
s.version = Primo::VERSION
s.authors = ["Cristiano Betta"]
s.email = ["cbetta@gmail.com"]
s.homepage = "http://github.com/cbetta/primo"
s.summary = "A better, configurable, default (prime) Rails stack."
s.description = "A better, configurable, default (prime) Rails stack."
s.license = 'MIT'

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"]
end

0 comments on commit 819d0d4

Please sign in to comment.