Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcxplorer committed May 26, 2011
0 parents commit 590bd17
Show file tree
Hide file tree
Showing 8 changed files with 62 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
2 changes: 2 additions & 0 deletions Gemfile
@@ -0,0 +1,2 @@
source :rubygems
gemspec
19 changes: 19 additions & 0 deletions README.md
@@ -0,0 +1,19 @@
SproutCore-Rails
================

SproutCore 2.0 for Rails 3.1.


Getting started
---------------

Add the gem to your application Gemfile:

gem "sproutcore-rails"

Run `bundle install` and add the following line to
`app/assets/javascripts/application.js`:

//= require sproutcore


2 changes: 2 additions & 0 deletions Rakefile
@@ -0,0 +1,2 @@
require "bundler"
Bundler::GemHelper.install_tasks
4 changes: 4 additions & 0 deletions lib/sproutcore-rails.rb
@@ -0,0 +1,4 @@
module SproutCoreRails
class Engine < Rails::Engine
end
end
3 changes: 3 additions & 0 deletions lib/sproutcore-rails/version.rb
@@ -0,0 +1,3 @@
module SproutCoreRails
VERSION = "0.1.0"
end
17 changes: 17 additions & 0 deletions sproutcore-rails.gemspec
@@ -0,0 +1,17 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sproutcore-rails/version"

Gem::Specification.new do |s|
s.name = "sproutcore-rails"
s.version = SproutCoreRails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Joao Carlos"]
s.email = ["contact@kiskolabs.com"]
s.homepage = "https://github.com/kiskolabs/sproutcore-rails"
s.summary = "SproutCore 2 for Rails 3.1."

s.files = %w(README.md) + Dir["lib/**/*", "vendor/**/*"]

s.require_paths = ["lib"]
end
11 changes: 11 additions & 0 deletions vendor/assets/javascripts/sproutcore.js

Large diffs are not rendered by default.

0 comments on commit 590bd17

Please sign in to comment.