1
0
Fork 0
mirror of https://github.com/ms-ati/docile synced 2023-03-27 23:21:52 -04:00

initial commit

This commit is contained in:
Marc Siegel 2011-12-06 13:51:56 -05:00
commit 1b225c8a27
6 changed files with 42 additions and 0 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
*.gem
.bundle
Gemfile.lock
pkg/*
.idea

4
Gemfile Normal file
View file

@ -0,0 +1,4 @@
source "http://rubygems.org"
# Specify your gem's dependencies in docile.gemspec
gemspec

1
Rakefile Normal file
View file

@ -0,0 +1 @@
require "bundler/gem_tasks"

24
docile.gemspec Normal file
View 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
View file

@ -0,0 +1,5 @@
require "docile/version"
module Docile
# Your code goes here...
end

3
lib/docile/version.rb Normal file
View file

@ -0,0 +1,3 @@
module Docile
VERSION = "0.1.0"
end