Skip to content

Commit

Permalink
fixes path to images/
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbehan committed Jul 12, 2011
0 parents commit 8691791
Show file tree
Hide file tree
Showing 15 changed files with 1,241 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
14 changes: 14 additions & 0 deletions Gemfile
@@ -0,0 +1,14 @@
source "http://rubygems.org"

gem "rails", "3.1.0.rc4"
gem "capybara", "~> 1.0.0"
gem "sqlite3"

# Asset template engines
gem 'sprockets', '2.0.0.beta.10'
gem 'sass'
gem 'coffee-script'
gem 'uglifier'
gem 'nokogiri'

gem 'jquery-rails'
2 changes: 2 additions & 0 deletions Rakefile
@@ -0,0 +1,2 @@
require 'bundler'
Bundler::GemHelper.install_tasks
21 changes: 21 additions & 0 deletions cleditor_rails.gemspec
@@ -0,0 +1,21 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cleditor_rails/version"

Gem::Specification.new do |s|
s.name = "cleditor_rails"
s.version = CleditorRails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Sean Behan"]
s.email = ["bseanvt@gmail.com"]
s.homepage = "https://github.com/bseanvt/selectbox_rails"
s.summary = %q{jQuery CLEditor for Rails 3.1 Asset Pipeline}
s.description = %q{jQuery CLEditor for Rails 3.1 Asset Pipeline}

s.rubyforge_project = "cleditor_rails"

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"]
end
1 change: 1 addition & 0 deletions lib/cleditor_rails.rb
@@ -0,0 +1 @@
require 'cleditor_rails/engine' if defined?(Rails && Rails::VERSION::MAJOR == 3 && Rails::VERSION::MINOR >=1)
6 changes: 6 additions & 0 deletions lib/cleditor_rails/engine.rb
@@ -0,0 +1,6 @@
module CleditorRails
module Rails
class Engine < ::Rails::Engine
end
end
end
3 changes: 3 additions & 0 deletions lib/cleditor_rails/version.rb
@@ -0,0 +1,3 @@
module CleditorRails
VERSION = "0.0.1"
end
Binary file added vendor/assets/.DS_Store
Binary file not shown.
Binary file added vendor/assets/images/buttons.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added vendor/assets/images/toolbar.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions vendor/assets/javascripts/cleditor.js
@@ -0,0 +1 @@
//= require jquery.cleditor

0 comments on commit 8691791

Please sign in to comment.