Skip to content

Commit

Permalink
Merge pull request #88 from stingerlabs/prepare-for-bower-release
Browse files Browse the repository at this point in the history
Prepare for a solid version 1 release via bower
  • Loading branch information
deleter8 committed Mar 15, 2016
2 parents be4b8a1 + 97f0bd4 commit 2fcf5b4
Show file tree
Hide file tree
Showing 8 changed files with 16,033 additions and 17 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -7,4 +7,3 @@ site_build/*
site/stylesheets/style.css
report/*
temp/*
dist/*
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2015 Gordon Kristan, greenlight.guru
Copyright (c) 2014-2016 Gordon Kristan, greenlight.guru

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
Expand Down
16 changes: 4 additions & 12 deletions README.md
Expand Up @@ -145,18 +145,10 @@ beyond that, just ask me directly, I'd be glad to help.

## Getting Ember Graph

Originally, I intended Ember Graph to use SemVer. Unfortunately, it went through so many API changes in the beginning
that it was simply too hard to keep up with all of the versions. I plan to come back to SemVer one day, but for now
it's recommended that you use the latest version of Ember Graph. You can find all of the Ember Graph builds
[here](https://ember-graph-builds.s3.amazonaws.com/index.html). They are organized by Git SHA1 hash. To use the builds
with Bower, simply point Bower to one of the .zip files on the builds site. Example:

```json
{
"dependencies": {
"ember-graph": "http://ember-graph-builds.s3.amazonaws.com/18dfe952f917e9c7f37d283252e4e2ff88e4f6c3/ember-graph.zip"
}
}
Get it from Bower:

```
bower install ember-graph-dist
```

Bower will then fetch and extract a debug build, a production build, and a minified build of Ember Graph.
Expand Down
37 changes: 34 additions & 3 deletions bower.json
@@ -1,13 +1,44 @@
{
"name": "ember-graph",
"main": "ember-graph.js",
"dependencies": {
"description": "Ember persistence library for complex object graphs",
"main": "dist/ember-graph.js",
"homepage": "https://github.com/stingerlabs/ember-graph",
"repository": {
"type": "git",
"url": "git@github.com/stingerlabs/ember-graph.git"
},
"dependencies": {
"ember": ">=1.8.0"
},
"devDependencies": {
"qunit": "1.15",
"ember-1.8.0": "ember#1.8.0",
"ember-1.13.0": "ember#1.13.0",
"ember-2.0.0": "ember#2.0.0"
}
},
"keywords": [
"ember",
"store",
"graph",
"persistence"
],
"authors": [
{ "name": "Gordon Kristan" },
{ "name": "greenlight.guru", "homepage": "http://www.greenlight.guru/" }
],
"license": "MIT",
"ignore": [
"lib",
"node_modules",
"report",
"site",
"tasks",
"test",
".bowerrc",
".codeclimate.yml",
".eslintrc",
".gitignore",
".travis.yml",
"Gruntfile.js"
]
}

0 comments on commit 2fcf5b4

Please sign in to comment.