Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit bedb45b

Browse files
committed
resolve merge conflicts
2 parents f4c62ec + 4761f68 commit bedb45b

File tree

13 files changed

+61
-2091
lines changed

13 files changed

+61
-2091
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
bower_components/
1+
dist/
22
node_modules/
3+
bower_components/
34
tests/coverage/
45
.idea

.travis.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,3 @@ env:
2222
global:
2323
- secure: mGHp1rQI11OvbBQn3PnBT5kuyo26gFl8U+nNq0Ot4opgSBX9JaHqS8Dx63uALWWU9qjy08/Mn68t/sKhayH1+XrPDIenOy/XEkkSAG60qAAowD9dRo3WaIMSOcWWYDeqdZOAWZ3LiXvjLO4Swagz5ejz7UtY/ws4CcTi2n/fp7c=
2424
- secure: Eao+hPFWKrHb7qUGEzLg7zdTCE//gb3arf5UmI9Z3i+DydSu/AwExXuywJYUj4/JNm/z8zyJ3j1/mdTyyt9VVyrnQNnyGH1b2oCUHkrs1NLwh5Oe4YcqUYROzoEKdDInvmjVJnIfUEM07htGMGvsLsX4MW2tqVHvD2rOwkn8C9s=
25-
deploy:
26-
provider: npm
27-
28-
api_key:
29-
secure: E9HfiXQdcK/pUeZyabrNof/vkM7V8lLYNuvEI9sgpDOhME8H1vwH87RGiV+50ulw0cRcYLfPC5mTFyeJ5dL244PbRMEKlvoheJyTKSNK6SnwRiGMNz4Ce4c6g5qJkwv9rYlB4jVZJPjfXGYE5Xp+MpYOkPBrTP02FbyhA/Ykr1A=
30-
on:
31-
tags: true
32-
repo: firebase/angularFire

CHANGELOG.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

Gruntfile.js

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,17 @@ module.exports = function(grunt) {
55
grunt.initConfig({
66
pkg: grunt.file.readJSON('package.json'),
77
meta: {
8-
banner: '/*!\n * <%= pkg.title || pkg.name %> <%= pkg.version %> <%= grunt.template.today("yyyy-mm-dd") %>\n' +
9-
'<%= pkg.homepage ? " * " + pkg.homepage + "\\n" : "" %>' +
10-
' * Copyright (c) <%= grunt.template.today("yyyy") %> Firebase, Inc.\n' +
11-
' * MIT LICENSE: http://firebase.mit-license.org/\n */\n\n'
8+
banner: '/*!\n' +
9+
' * AngularFire is the officially supported AngularJS binding for Firebase. Firebase\n' +
10+
' * is a full backend so you don\'t need servers to build your Angular app. AngularFire\n' +
11+
' * provides you with the $firebase service which allows you to easily keep your $scope\n' +
12+
' * variables in sync with your Firebase backend.\n' +
13+
' *\n' +
14+
' * AngularFire 0.0.0\n' +
15+
' * https://github.com/firebase/angularfire/\n' +
16+
' * Date: <%= grunt.template.today("mm/dd/yyyy") %>\n' +
17+
' * License: MIT\n' +
18+
' */\n'
1219
},
1320

1421
// merge files from src/ into angularfire.js

README.md

Lines changed: 43 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11

22
# AngularFire
33

4-
[![Build Status](https://travis-ci.org/firebase/angularfire.svg)](https://travis-ci.org/firebase/angularfire)
4+
[![Build Status](https://travis-ci.org/firebase/angularfire.svg?branch=master)](https://travis-ci.org/firebase/angularfire)
55
[![Version](https://badge.fury.io/gh/firebase%2Fangularfire.svg)](http://badge.fury.io/gh/firebase%2Fangularfire)
66

7-
AngularFire is the officially supported [AngularJS](http://angularjs.org/) binding
8-
for [Firebase](http://www.firebase.com/?utm_medium=web&utm_source=angularfire).
9-
Firebase is a full backend so you don't need servers to build your Angular app. AngularFire provides you with the `$firebase` service which allows you to easily keep your `$scope` variables in sync with your Firebase backend.
7+
AngularFire is the officially supported [AngularJS](http://angularjs.org/) binding for
8+
[Firebase](http://www.firebase.com/?utm_medium=web&utm_source=angularfire). Firebase is a full
9+
backend so you don't need servers to build your Angular app. AngularFire provides you with the
10+
`$firebase` service which allows you to easily keep your `$scope` variables in sync with your
11+
Firebase backend.
12+
1013

1114
## Downloading AngularFire
1215

@@ -17,43 +20,59 @@ In order to use AngularFire in your project, you need to include the following f
1720
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.17/angular.min.js"></script>
1821

1922
<!-- Firebase -->
20-
<script src="https://cdn.firebase.com/js/client/1.0.18/firebase.js"></script>
23+
<script src="https://cdn.firebase.com/js/client/1.0.21/firebase.js"></script>
2124

2225
<!-- AngularFire -->
2326
<script src="https://cdn.firebase.com/libs/angularfire/0.8.0/angularfire.min.js"></script>
2427
```
2528

26-
Use the URL above to download both the minified and non-minified versions of AngularFire from the Firebase CDN. You can also download them from the root of this GitHub repository. [Firebase](https://www.firebase.com/docs/web-quickstart.html?utm_medium=web&utm_source=angularfire) and [AngularJS](http://angularjs.org/) can be downloaded directly from their respective websites.
29+
Use the URL above to download both the minified and non-minified versions of AngularFire from the
30+
Firebase CDN. You can also download them from the
31+
[releases page of this GitHub repository](https://github.com/firebase/angularfire/releases).
32+
[Firebase](https://www.firebase.com/docs/web/quickstart.html?utm_medium=web&utm_source=angularfire) and
33+
[Angular](https://angularjs.org/) can be downloaded directly from their respective websites.
2734

28-
You can also install AngularFire via Bower and the dependencies will be downloaded automatically:
35+
You can also install AngularFire via Bower and its dependencies will be downloaded automatically:
2936

3037
```bash
3138
$ bower install angularfire --save
3239
```
3340

34-
Once you've included AngularFire and its dependencies into your project, you will have access to the `$firebase` service.
41+
Once you've included AngularFire and its dependencies into your project, you will have access to
42+
the `$firebase` service.
3543

3644
You can also start hacking on AngularFire in a matter of seconds on
3745
[Nitrous.IO](https://www.nitrous.io/?utm_source=github.com&utm_campaign=angularfire&utm_medium=hackonnitrous):
3846

3947
[![Hack firebase/angularfire on
4048
Nitrous.IO](https://d3o0mnbgv6k92a.cloudfront.net/assets/hack-l-v1-3cc067e71372f6045e1949af9d96095b.png)](https://www.nitrous.io/hack_button?source=embed&runtime=nodejs&repo=firebase%2Fangularfire&file_to_open=README.md)
4149

50+
4251
## Getting Started with Firebase
4352

44-
AngularFire requires Firebase in order to sync data. You can [sign up here](https://www.firebase.com/docs/web-quickstart.html?utm_medium=web&utm_source=angularfire) for a free account.
53+
AngularFire requires Firebase in order to sync data. You can
54+
[sign up here](https://www.firebase.com/signup/?utm_medium=web&utm_source=angularfire) for a free
55+
account.
56+
4557

4658
## Documentation
4759

48-
The Firebase docs have a [quickstart](https://www.firebase.com/docs/web/bindings/angular/quickstart.html), [guide](https://www.firebase.com/docs/web/bindings/angular/guide.html), and [full API reference](https://www.firebase.com/docs/web/bindings/angular/api.html) for AngularFire.
60+
The Firebase docs have a [quickstart](https://www.firebase.com/docs/web/bindings/angular/quickstart.html?utm_medium=web&utm_source=angularfire),
61+
[guide](https://www.firebase.com/docs/web/bindings/angular/guide.html?utm_medium=web&utm_source=angularfire),
62+
and [full API reference](https://www.firebase.com/docs/web/bindings/angular/api.html?utm_medium=web&utm_source=angularfire)
63+
for AngularFire.
64+
65+
We also have a [tutorial](https://www.firebase.com/tutorial/#tutorial/angular/0?utm_medium=web&utm_source=angularfire)
66+
to help you get started with AngularFire.
4967

50-
We also have a [tutorial](https://www.firebase.com/tutorial/#tutorial/angular/0) to help you get started with AngularFire.
68+
Join our [Firebase + Angular Google Group](https://groups.google.com/forum/#!forum/firebase-angular)
69+
to ask questions, provide feedback, and share apps you've built with AngularFire.
5170

52-
Join our [Firebase + Angular Google Group](https://groups.google.com/forum/#!forum/firebase-angular) to ask questions, provide feedback, and share apps you've built with Firebase and Angular.
5371

5472
## Contributing
5573

56-
If you'd like to contribute to AngularFire, you'll need to run the following commands to get your environment set up:
74+
If you'd like to contribute to AngularFire, you'll need to run the following commands to get your
75+
environment set up:
5776

5877
```bash
5978
$ git clone https://github.com/firebase/angularfire.git
@@ -66,8 +85,16 @@ $ grunt install # install Selenium server for end-to-end tests
6685
$ grunt watch # watch for source file changes
6786
```
6887

69-
`grunt watch` will watch for changes in the `/src/` directory and lint, concatenate, and minify the source files when a change occurs. The output files - `angularfire.js` and `angularfire.min.js` - are written to the `/dist/` directory. `grunt watch` will also re-run the unit tests every time you update any source files.
88+
`grunt watch` will watch for changes in the `/src/` directory and lint, concatenate, and minify the
89+
source files when a change occurs. The output files - `angularfire.js` and `angularfire.min.js` -
90+
are written to the `/dist/` directory. `grunt watch` will also re-run the unit tests every time you
91+
update any source files.
7092

71-
You can run the entire test suite via the command line using `grunt test`. To only run the unit tests, run `grunt test:unit`. To only run the end-to-end [Protractor](https://github.com/angular/protractor/) tests, run `grunt test:e2e`.
93+
You can run the entire test suite via the command line using `grunt test`. To only run the unit
94+
tests, run `grunt test:unit`. To only run the end-to-end [Protractor](https://github.com/angular/protractor/)
95+
tests, run `grunt test:e2e`.
7296

73-
In addition to the automated test suite, there is an additional manual test suite that ensures that the `$firebaseSimpleLogin` service is working properly with the authentication providers. These tests can be run with `grunt test:manual`. Note that you must click "Close this window", login to Twitter, etc. when prompted in order for these tests to complete successfully.
97+
In addition to the automated test suite, there is an additional manual test suite that ensures that
98+
the `$firebaseSimpleLogin` service is working properly with the authentication providers. These tests
99+
can be run with `grunt test:manual`. Note that you must click "Close this window", login to Twitter,
100+
etc. when prompted in order for these tests to complete successfully.

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angularfire",
33
"description": "The officially supported AngularJS binding for Firebase",
4-
"version": "0.8.0",
4+
"version": "0.0.0",
55
"authors": [
66
"Firebase <[email protected]> (https://www.firebase.com/)"
77
],
@@ -27,7 +27,7 @@
2727
"firebase.json",
2828
"package.json",
2929
"Gruntfile.js",
30-
"release.sh"
30+
"changelog.txt"
3131
],
3232
"dependencies": {
3333
"angular": "1.2.x || 1.3.x",

changelog.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)