Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mamut committed Feb 4, 2015
1 parent 1469f69 commit fd87d4f
Show file tree
Hide file tree
Showing 8 changed files with 166 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
*.gem
*.rbc
.bundle
.config
.yardoc
Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp
*.bundle
*.so
*.o
*.a
mkmf.log
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in capistrano-ember_cli.gemspec
gemspec
22 changes: 22 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2015 Netguru

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
54 changes: 54 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Capistrano::EmberCli

Ember CLI task for Capistrano 3.x

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'capistrano-ember_cli'
```

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano-ember_cli

## Usage

Require in `Capfile` to use the default task:

```ruby
require 'capistrano/ember_cli'
```

The task will run before `deploy:updated` as part of Capistrano's default deploy.

This gem assumes that you have already executed `npm install` and `bower install`. You could use [capistrano/npm](https://github.com/capistrano/npm) and [capistrano/bower](https://github.com/platanus/capistrano-bower) to achieve that.

### Configuration

Below are all the configuration values and their defaults.
```ruby
set :ember_cli_roles, :web
set :ember_cli_binary, './node_modules/ember-cli/bin/ember'
set :ember_cli_output_path, 'dist/'
set :ember_cli_target_path, nil
set :ember_cli_env, nil
```

Here are short descriptions for the less obvious configuration values:
* `:ember_cli_target_path` is the root directory of the Ember CLI project. It defaults to the `release_path`.
* `:ember_cli_env` is the environment with which the project will be built. It defaults to the current `stage`.

## Contributing

1. Fork it ( https://github.com/netguru/capistrano-ember_cli/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require "bundler/gem_tasks"

23 changes: 23 additions & 0 deletions capistrano-ember_cli.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
spec.name = "capistrano-ember_cli"
spec.version = "1.0.0"
spec.authors = ["Krzysztof Urban"]
spec.email = ["[email protected]"]
spec.summary = %q{Ember CLI support for Capistrano 3.x}
spec.homepage = "https://github.com/netguru/capistrano-ember_cli"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]

spec.add_dependency 'capistrano', '~> 3.0'

spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
end
1 change: 1 addition & 0 deletions lib/capistrano/ember_cli.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
load File.expand_path('../tasks/ember_cli.rake', __FILE__)
38 changes: 38 additions & 0 deletions lib/capistrano/tasks/ember_cli.rake
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
namespace :ember_cli do

desc <<-DESC
Build the current Ember CLI project. The install command is executed \
with the --environment flag set to the current stage, and the \
--output-path set to 'dist/'.
You can override any of these defaults by setting the variables shown below.
set :ember_cli_roles, :web
set :ember_cli_binary, './node_modules/ember-cli/bin/ember'
set :ember_cli_output_path, 'dist/'
set :ember_cli_target_path, nil
set :ember_cli_env, nil
DESC
task :build do
on roles fetch(:ember_cli_roles) do
within fetch(:ember_cli_target_path, release_path) do
execute(
fetch(:ember_cli_binary),
:build,
"--environment", fetch(:ember_cli_env, fetch(:stage)),
"--output-path", fetch(:ember_cli_output_path),
)
end
end
end

before 'deploy:updated', 'ember_cli:build'
end

namespace :load do
task :defaults do
set :ember_cli_roles, :web
set :ember_cli_binary, './node_modules/ember-cli/bin/ember'
set :ember_cli_output_path, 'dist/'
end
end

0 comments on commit fd87d4f

Please sign in to comment.