Skip to content

Commit

Permalink
Prima versione.
Browse files Browse the repository at this point in the history
  • Loading branch information
smirkos committed Dec 25, 2015
1 parent b986ef5 commit 37719fb
Show file tree
Hide file tree
Showing 936 changed files with 122,014 additions and 0 deletions.
57 changes: 57 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Tombola

Una semplice tombola per giocare con amici e parenti.

## Getting Started
### On the server
Install the module with: `npm install Tombola`

```javascript
var Tombola = require('Tombola');
Tombola.awesome(); // "awesome"
```

### In the browser
Download the [production version][min] or the [development version][max].

[min]: https://raw.github.com/mirko/Tombola/master/dist/Tombola.min.js
[max]: https://raw.github.com/mirko/Tombola/master/dist/Tombola.js

In your web page:

```html
<script src="dist/Tombola.min.js"></script>
<script>
awesome(); // "awesome"
</script>
```

In your code, you can attach Tombola's methods to any object.

```html
<script>
this.exports = Bocoup.utils;
</script>
<script src="dist/Tombola.min.js"></script>
<script>
Bocoup.utils.awesome(); // "awesome"
</script>
```

## Documentation
_(Coming soon)_

## Examples
_(Coming soon)_

## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [grunt](http://gruntjs.com/).

_Also, please don't edit files in the "dist" subdirectory as they are generated via grunt. You'll find source code in the "lib" subdirectory!_

## Release History
_(Nothing yet)_

## License
Copyright (c) 2015 Mirko Squadrani
Licensed under the MIT license.
45 changes: 45 additions & 0 deletions bower_components/bootstrap/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "bootstrap",
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
"keywords": [
"css",
"js",
"less",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"homepage": "http://getbootstrap.com",
"license": "MIT",
"moduleType": "globals",
"main": [
"less/bootstrap.less",
"dist/js/bootstrap.js"
],
"ignore": [
"/.*",
"_config.yml",
"CNAME",
"composer.json",
"CONTRIBUTING.md",
"docs",
"js/tests",
"test-infra"
],
"dependencies": {
"jquery": "1.9.1 - 2"
},
"version": "3.3.6",
"_release": "3.3.6",
"_resolution": {
"type": "version",
"tag": "v3.3.6",
"commit": "81df608a40bf0629a1dc08e584849bb1e43e0b7a"
},
"_source": "git://github.com/twbs/bootstrap.git",
"_target": "~3.3.6",
"_originalSource": "bootstrap",
"_direct": true
}
5 changes: 5 additions & 0 deletions bower_components/bootstrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.

See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.

Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
Loading

0 comments on commit 37719fb

Please sign in to comment.