Skip to content

Commit c17c7e6

Browse files
committed
Merge pull request #4 from johannhof/master
Rename to react-native-simple-router (see #2)
2 parents e3f9149 + fbf7db5 commit c17c7e6

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 react-native-simple-router
3+
Copyright (c) 2016 react-native-simple-router authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
GB Native Router
1+
React Native Simple Router
22
===================
33

44
Awesome navigation for your React Native app.
@@ -11,13 +11,13 @@ Install
1111
Make sure that you are in your React Native project directory and run:
1212

1313

14-
```$ npm install gb-native-router --save```
14+
```$ npm install react-native-simple-router --save```
1515

1616
Usage
1717
-----
1818

1919
```javascript
20-
var Router = require('gb-native-router');
20+
var Router = require('react-native-simple-router');
2121
```
2222

2323
The basics:
@@ -141,12 +141,12 @@ Events emitted by the router:
141141
A more advanced example: Twitter app
142142
------------------------------------
143143

144-
To see more of the router in action, you can check out the Twitter example app that comes with the package. Just make sure that you first drag all the images from ```node_modules/react-native-router/twitter-example/images``` to your project's Images.xcassets
144+
To see more of the router in action, you can check out the Twitter example app that comes with the package. Just make sure that you first drag all the images from ```node_modules/react-native-simple-router/twitter-example/images``` to your project's Images.xcassets
145145

146146
After that, don't forget to rebuild the app in XCode before you launch the simulator. Then test the app by requiring the TwitterApp component:
147147

148148
```javascript
149-
var TwitterApp = require('./node_modules/react-native-router/twitter-example');
149+
var TwitterApp = require('./node_modules/react-native-simple-router/twitter-example');
150150

151151
var {
152152
AppRegistry

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
{
2-
"name": "gb-native-router",
2+
"name": "react-native-simple-router",
33
"version": "0.6.0",
44
"description": "Easy to use Navigator for your native app.",
5-
"author": "Mikael Carpenter <mikaelcarp.dev@gmail.com>",
5+
"author": "Tristan Edwards <tristan.edwards@me.com> (http://tristanedwards.me)",
6+
"contributors": [
7+
"Mikael Carpenter",
8+
"David Leonardi"
9+
],
610
"main": "index.js",
711
"scripts": {
812
"test": "echo \"Error: no test specified\" && exit 1"
913
},
1014
"repository": {
1115
"type": "git",
12-
"url": "https://github.com/MikaelCarpenter/gb-native-router.git"
16+
"url": "https://github.com/react-native-simple-router-community/react-native-simple-router.git"
1317
},
1418
"keywords": [
1519
"react",
@@ -23,9 +27,9 @@
2327
],
2428
"license": "MIT",
2529
"bugs": {
26-
"url": "https://github.com/MikaelCarpenter/gb-native-router/issues"
30+
"url": "https://github.com/react-native-simple-router-community/react-native-simple-router/issues"
2731
},
28-
"homepage": "https://github.com/MikaelCarpenter/gb-native-router",
32+
"homepage": "https://github.com/react-native-simple-router-community/react-native-simple-router",
2933
"dependencies": {},
3034
"peerDependencies": {
3135
"react-native": ">=0.12.0 || 0.5.0-rc1 || 0.6.0-rc || 0.7.0-rc || 0.7.0-rc.2 || 0.8.0-rc || 0.8.0-rc.2 || 0.9.0-rc || 0.10.0-rc || 0.11.0-rc || 0.12.0-rc || 0.13.0-rc || 0.14.0-rc || 0.15.0-rc || 0.16.0-rc",

0 commit comments

Comments
 (0)