Skip to content

Commit

Permalink
Init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gazay committed Apr 3, 2012
0 parents commit b6ab028
Show file tree
Hide file tree
Showing 8 changed files with 73 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in tonic.gemspec
gemspec
27 changes: 27 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
PATH
remote: .
specs:
tonic (0.0.1)
compass
haml
sass

GEM
remote: http://rubygems.org/
specs:
chunky_png (1.2.5)
compass (0.12.1)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.1)
fssm (0.2.8.1)
haml (3.1.4)
rake (0.9.2.2)
sass (3.1.15)

PLATFORMS
ruby

DEPENDENCIES
rake
tonic!
Empty file added README.md
Empty file.
9 changes: 9 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require 'rubygems'
require 'rake'
require 'bundler'
Bundler::GemHelper.install_tasks

desc 'Run all tests by default'
task :default do
system("rspec spec")
end
1 change: 1 addition & 0 deletions bin/tonic
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
echo '12345'
1 change: 1 addition & 0 deletions lib/tonic.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module Tonic; end
5 changes: 5 additions & 0 deletions lib/tonic/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Tonic

VERSION = '0.0.1'

end
26 changes: 26 additions & 0 deletions tonic.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tonic/version"

Gem::Specification.new do |s|
s.name = "tonic"
s.version = Tonic::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['gazay']
s.email = ['alex.gaziev@gmail.com']
s.homepage = "https://github.com/gazay/tonic"
s.summary = %q{Create github pages easy with Sass, Haml/Slim, Coffee.}
s.description = %q{You don't need to write your github pages in html and css anymore - now it's simple to use your favorite technologies with tonic!}

s.rubyforge_project = "tonic"

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", "bin"]
s.add_dependency "haml"
s.add_dependency "sass"
s.add_dependency "compass"

s.add_development_dependency "rake"
end

0 comments on commit b6ab028

Please sign in to comment.