Skip to content

Commit

Permalink
bundle gem ckeditor-rails
Browse files Browse the repository at this point in the history
  • Loading branch information
tsechingho committed Dec 5, 2011
0 parents commit 7bb20f9
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
*.gem
*.rbc
.bundle
.config
.yardoc
Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp
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 ckeditor-rails.gemspec
gemspec
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"
17 changes: 17 additions & 0 deletions ckeditor-rails.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ckeditor-rails/version', __FILE__)

Gem::Specification.new do |gem|
gem.authors = ["Tse-Ching Ho"]
gem.email = ["tsechingho@gmail.com"]
gem.description = %q{TODO: Write a gem description}
gem.summary = %q{TODO: Write a gem summary}
gem.homepage = ""

gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "ckeditor-rails"
gem.require_paths = ["lib"]
gem.version = Ckeditor::Rails::VERSION
end
7 changes: 7 additions & 0 deletions lib/ckeditor-rails.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require "ckeditor-rails/version"

module Ckeditor
module Rails
# Your code goes here...
end
end
5 changes: 5 additions & 0 deletions lib/ckeditor-rails/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module Ckeditor
module Rails
VERSION = "0.0.1"
end
end

0 comments on commit 7bb20f9

Please sign in to comment.