1
0
Fork 0

Organize lib

This commit is contained in:
Gregory Eremin 2014-08-15 19:31:25 +07:00
parent 67419f8df2
commit 98bc3bcf1b
No known key found for this signature in database
GPG Key ID: 5EFA427EEC26E86C
5 changed files with 8 additions and 13 deletions

View File

@ -1,7 +1,7 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'burlesque/client/version'
require 'burlesque/version'
Gem::Specification.new do |spec|
spec.name = "burlesque-client"

4
lib/burlesque.rb Normal file
View File

@ -0,0 +1,4 @@
require "burlesque/version"
module Burlesque
end

View File

@ -1,7 +0,0 @@
require "burlesque/client/version"
module Burlesque
module Client
# Your code goes here...
end
end

View File

@ -1,5 +0,0 @@
module Burlesque
module Client
VERSION = "0.0.1"
end
end

3
lib/burlesque/version.rb Normal file
View File

@ -0,0 +1,3 @@
module Burlesque
VERSION = "0.0.1"
end