Skip to content

Commit

Permalink
chore(*): extracts q service from sofa-core
Browse files Browse the repository at this point in the history
  • Loading branch information
0x-r4bbit committed Mar 11, 2014
1 parent 357204c commit aa0539f
Show file tree
Hide file tree
Showing 29 changed files with 394 additions and 3,753 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ before_script:
notifications:
hipchat:
rooms:
secure: fbPxchixUxvTJ6l3sHmtQERtb/SEk45YbdMcxkbIOGprJfecieUqspUuiWLyDxXq8vDAxw/D77CAZhbXYJlOPbDIp0TMYEi+1y/vhAOcapglemNORXVU/7grv0FKurmY+O82jsdd9nOcipoRudl75YU4GlBSt+yS6utaUzU/Zsg=
secure: BA2A/ACT6YQZ4b2uXnXNNm5eG37KyDg3iisctAtRUOukvANSZF650JKM9KVDl8vyfqYJSl9e/j+VV5bs++ymZZCv6py3pf6eh3R+O8HaE9qQDTz8fcmPl2zRVXPqQ67Mx1TJkNuzRfncX2/naRRM3KVT3Dtk1FhwUn18/hCe1fU=
1 change: 0 additions & 1 deletion CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = function (grunt) {

grunt.initConfig({

component_name: 'sofa.core',
component_name: 'sofa.qService',
component_sass_name: grunt.file.readJSON('bower.json').name,
build_dir: 'dist',

Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
# Sofa Core [![Build Status](https://travis-ci.org/sofa/sofa-core.png?branch=master)](https://travis-ci.org/sofa/sofa-core)
# Sofa Q Service [![Build Status](https://travis-ci.org/sofa/sofa-q-service.png?branch=master)](https://travis-ci.org/sofa/sofa-q-service)

> Sofa Web SDK Core Components
This is the Sofa Core component. This component is actually more like a bundle,
that gives you core functionalities on which other sofa components depend on.
This is the Sofa Q Service component. This service is actually a part of
the Angular `$q` service source to bring deferreds and flow control to
sofa.

## Installation

Via npm:

```sh
$ npm install sofa-core
$ npm install sofa-q-service
```

Via Bower:

```sh
$ bower install sofa-core
$ bower install sofa-q-service
```
7 changes: 5 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sofa-core",
"version": "0.3.0",
"name": "sofa-q-service",
"version": "0.1.0",
"homepage": "http://www.sofa.io",
"authors": [
"Pascal Precht <[email protected]>"
Expand All @@ -10,6 +10,9 @@
"devDependencies": {
"sofa-testing": "0.1.x"
},
"dependencies": {
"sofa-core": "0.4.x"
},
"keywords": [
"sofa",
"sofa.io",
Expand Down
2 changes: 1 addition & 1 deletion component.prefix
Original file line number Diff line number Diff line change
@@ -1 +1 @@
;(function (window, undefined) {
;(function (sofa, undefined) {
2 changes: 1 addition & 1 deletion component.suffix
Original file line number Diff line number Diff line change
@@ -1 +1 @@
}(window));
}(sofa));
Loading

0 comments on commit aa0539f

Please sign in to comment.