angular_master 0.1.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +9 -8
- data/lib/angular_master/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a3ea00626c2ddd99a6a20bfc91b2c90473e0ce9
|
|
4
|
+
data.tar.gz: 75b2bffea19857a9a98d290ab47dec656dc5879e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a7eac4beb18e7f622e6d37f1a3073c2fa94aaa8664d1795487457cf16f9a0d7221cec15ea447c3364face151ca2a393b587b41bb92a05c84f8608867d7dac21
|
|
7
|
+
data.tar.gz: 6cdb2fdfad64bfc3a2fb596431e4f72464faeac59d0f2f138df51bff14fb7d6af231f69909a33f7be5db3aaff9b2ebb890682483a2ab544d3123016aeb6ca03a
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Angular Master
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Angular Master gem allow you to easily include angularjs and associated libraries easily into your rails app. All the libraries of AngularJS are open sourced.
|
|
4
|
+
[](https://badge.fury.io/rb/angular_master)
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
7
|
|
|
@@ -30,29 +30,30 @@ require the following files in application.css to use [Angular Material](https:/
|
|
|
30
30
|
```
|
|
31
31
|
### b. Javascript
|
|
32
32
|
require the following files in application.js
|
|
33
|
-
|
|
33
|
+
|
|
34
|
+
#### for AngularJS
|
|
34
35
|
```js
|
|
35
36
|
//= require angular
|
|
36
37
|
```
|
|
37
|
-
|
|
38
|
+
#### for Angular UI Router
|
|
38
39
|
```js
|
|
39
40
|
//= require angular-ui-router
|
|
40
41
|
```
|
|
41
|
-
|
|
42
|
+
#### for Angular Moment
|
|
42
43
|
```js
|
|
43
44
|
//= require angular-moment
|
|
44
45
|
```
|
|
45
|
-
|
|
46
|
+
#### for Angular Filter
|
|
46
47
|
```js
|
|
47
48
|
//= require angular-filter
|
|
48
49
|
```
|
|
49
|
-
|
|
50
|
+
#### for Angular Material (remember to use this while including css file for angular material)
|
|
50
51
|
```js
|
|
51
52
|
//= require angular-material
|
|
52
53
|
```
|
|
53
54
|
## Contributing
|
|
54
55
|
|
|
55
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
56
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/agrim123/angular_master.
|
|
56
57
|
|
|
57
58
|
## License
|
|
58
59
|
|