Skip to content

Commit

Permalink
making mix available as a Rails 3.1 engine
Browse files Browse the repository at this point in the history
  • Loading branch information
moonmaster9000 committed Dec 11, 2011
1 parent 549166b commit a3e0608
Show file tree
Hide file tree
Showing 53 changed files with 928 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "http://rubygems.org"

gem "rails", "~> 3.1.0"
87 changes: 87 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
GEM
remote: http://rubygems.org/
specs:
actionmailer (3.1.3)
actionpack (= 3.1.3)
mail (~> 2.3.0)
actionpack (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
builder (~> 3.0.0)
erubis (~> 2.7.0)
i18n (~> 0.6)
rack (~> 1.3.5)
rack-cache (~> 1.1)
rack-mount (~> 0.8.2)
rack-test (~> 0.6.1)
sprockets (~> 2.0.3)
activemodel (3.1.3)
activesupport (= 3.1.3)
builder (~> 3.0.0)
i18n (~> 0.6)
activerecord (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
arel (~> 2.2.1)
tzinfo (~> 0.3.29)
activeresource (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
activesupport (3.1.3)
multi_json (~> 1.0)
arel (2.2.1)
builder (3.0.0)
erubis (2.7.0)
hike (1.2.1)
i18n (0.6.0)
json (1.6.3)
mail (2.3.0)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.17.2)
multi_json (1.0.4)
polyglot (0.3.3)
rack (1.3.5)
rack-cache (1.1)
rack (>= 0.4)
rack-mount (0.8.3)
rack (>= 1.0.0)
rack-ssl (1.3.2)
rack
rack-test (0.6.1)
rack (>= 1.0)
rails (3.1.3)
actionmailer (= 3.1.3)
actionpack (= 3.1.3)
activerecord (= 3.1.3)
activeresource (= 3.1.3)
activesupport (= 3.1.3)
bundler (~> 1.0)
railties (= 3.1.3)
railties (3.1.3)
actionpack (= 3.1.3)
activesupport (= 3.1.3)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (~> 0.14.6)
rake (0.9.2.2)
rdoc (3.11)
json (~> 1.4)
sprockets (2.0.3)
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
thor (0.14.6)
tilt (1.3.3)
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.31)

PLATFORMS
ruby

DEPENDENCIES
rails (~> 3.1.0)
2 changes: 0 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ Mix(Drinkable).into Coffee.protoype, Beer.prototype, Tea.prototype

Notice that we passed the prototype for our objects to our `Mix` API.

You can mix several objects at once:

Now, if we create an instance of any of our classes, we'll be able to `drink` them:

```coffeescript
Expand Down
2 changes: 1 addition & 1 deletion features/support/world.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var World = function() {
this.Mix = require('../../src/mix');
this.Mix = require('../../src/javascripts/mix');
this.CoffeeScript = require('coffee-script');
};
exports.World = World;
1 change: 1 addition & 0 deletions lib/mix.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'mix/engine'
7 changes: 7 additions & 0 deletions lib/mix/engine.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require 'rails'

module Mix
class Engine < ::Rails::Engine
paths["app/assets"] << "src/"
end
end
9 changes: 9 additions & 0 deletions mix.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Gem::Specification.new do |s|
s.name = "mix"
s.version = "0.0.1"
s.description = "An engine that exposes a 'mix' asset to your Rails asset pipeline."
s.author = "Matt Parker"
s.email = "moonmaster9000@gmail.com"
s.homepage = "http://github.com/moonmaster9000/mix.coffee"
s.files = Dir["lib/**/*"] + Dir["src/**/*"]
end
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Mix properties into objects with ease.",
"author": "Matt Parker <moonmaster9000@gmail.com>",
"homepage": "http://github.com/moonmaster9000/mix.coffee",
"main": "./src/mix.js",
"main": "./src/javascripst/mix.js",
"scripts": {
"test": "cucumber.js"
},
Expand All @@ -13,7 +13,7 @@
"url": "http://github.com/moonmaster9000/mix.coffee"
},
"directories": {
"lib": "./src"
"lib": "./src/javascripts/"
},
"devDependencies": {
"cucumber": "*",
Expand Down
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions test_engine_app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global

# Ignore bundler config
/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp
33 changes: 33 additions & 0 deletions test_engine_app/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
source 'http://rubygems.org'

gem 'rails', '3.1.3'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'


gem 'json'
gem 'mix', :path => '../'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.1.5'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end



# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# Use unicorn as the web server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug'

115 changes: 115 additions & 0 deletions test_engine_app/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
PATH
remote: ../
specs:
mix (0.0.1)

GEM
remote: http://rubygems.org/
specs:
actionmailer (3.1.3)
actionpack (= 3.1.3)
mail (~> 2.3.0)
actionpack (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
builder (~> 3.0.0)
erubis (~> 2.7.0)
i18n (~> 0.6)
rack (~> 1.3.5)
rack-cache (~> 1.1)
rack-mount (~> 0.8.2)
rack-test (~> 0.6.1)
sprockets (~> 2.0.3)
activemodel (3.1.3)
activesupport (= 3.1.3)
builder (~> 3.0.0)
i18n (~> 0.6)
activerecord (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
arel (~> 2.2.1)
tzinfo (~> 0.3.29)
activeresource (3.1.3)
activemodel (= 3.1.3)
activesupport (= 3.1.3)
activesupport (3.1.3)
multi_json (~> 1.0)
arel (2.2.1)
builder (3.0.0)
coffee-rails (3.1.1)
coffee-script (>= 2.2.0)
railties (~> 3.1.0)
coffee-script (2.2.0)
coffee-script-source
execjs
coffee-script-source (1.1.3)
erubis (2.7.0)
execjs (1.2.12)
multi_json (~> 1.0)
hike (1.2.1)
i18n (0.6.0)
json (1.6.3)
mail (2.3.0)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.17.2)
multi_json (1.0.4)
polyglot (0.3.3)
rack (1.3.5)
rack-cache (1.1)
rack (>= 0.4)
rack-mount (0.8.3)
rack (>= 1.0.0)
rack-ssl (1.3.2)
rack
rack-test (0.6.1)
rack (>= 1.0)
rails (3.1.3)
actionmailer (= 3.1.3)
actionpack (= 3.1.3)
activerecord (= 3.1.3)
activeresource (= 3.1.3)
activesupport (= 3.1.3)
bundler (~> 1.0)
railties (= 3.1.3)
railties (3.1.3)
actionpack (= 3.1.3)
activesupport (= 3.1.3)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (~> 0.14.6)
rake (0.9.2.2)
rdoc (3.11)
json (~> 1.4)
sass (3.1.11)
sass-rails (3.1.5)
actionpack (~> 3.1.0)
railties (~> 3.1.0)
sass (~> 3.1.10)
tilt (~> 1.3.2)
sprockets (2.0.3)
hike (~> 1.2)
rack (~> 1.0)
tilt (!= 1.3.0, ~> 1.1)
thor (0.14.6)
tilt (1.3.3)
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.31)
uglifier (1.1.0)
execjs (>= 0.3.0)
multi_json (>= 1.0.2)

PLATFORMS
ruby

DEPENDENCIES
coffee-rails (~> 3.1.1)
json
mix!
rails (= 3.1.3)
sass-rails (~> 3.1.5)
uglifier (>= 1.0.3)
Loading

0 comments on commit a3e0608

Please sign in to comment.