mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
initial commit
This commit is contained in:
commit
1b225c8a27
6 changed files with 42 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
*.gem
|
||||
.bundle
|
||||
Gemfile.lock
|
||||
pkg/*
|
||||
.idea
|
4
Gemfile
Normal file
4
Gemfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
source "http://rubygems.org"
|
||||
|
||||
# Specify your gem's dependencies in docile.gemspec
|
||||
gemspec
|
1
Rakefile
Normal file
1
Rakefile
Normal file
|
@ -0,0 +1 @@
|
|||
require "bundler/gem_tasks"
|
24
docile.gemspec
Normal file
24
docile.gemspec
Normal file
|
@ -0,0 +1,24 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
$:.push File.expand_path("../lib", __FILE__)
|
||||
require "docile/version"
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "docile"
|
||||
s.version = Docile::VERSION
|
||||
s.authors = ["Marc Siegel"]
|
||||
s.email = ["msiegel@usainnov.com"]
|
||||
s.homepage = "http://docile.github.com"
|
||||
s.summary = "Docile helps keep your DSLs tame and well-behaved'"
|
||||
s.description = "Docile handles ruby DSL evaluation best-practices so you can concentrate on your project"
|
||||
|
||||
s.rubyforge_project = "docile"
|
||||
|
||||
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"]
|
||||
|
||||
# specify any dependencies here; for example:
|
||||
s.add_development_dependency "rspec", '~> 2.7.0'
|
||||
# s.add_runtime_dependency "rest-client"
|
||||
end
|
5
lib/docile.rb
Normal file
5
lib/docile.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
require "docile/version"
|
||||
|
||||
module Docile
|
||||
# Your code goes here...
|
||||
end
|
3
lib/docile/version.rb
Normal file
3
lib/docile/version.rb
Normal file
|
@ -0,0 +1,3 @@
|
|||
module Docile
|
||||
VERSION = "0.1.0"
|
||||
end
|
Loading…
Reference in a new issue