sinatra-static-bp 0.1.1 → 0.1.2
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.
- data/README.md +12 -2
- data/lib/skeleton/Gemfile +2 -5
- metadata +1 -1
data/README.md
CHANGED
|
@@ -13,6 +13,16 @@ See boilerplate [README.md](https://github.com/hooktstudios/sinatra-static-bp/bl
|
|
|
13
13
|
## Featuring
|
|
14
14
|
|
|
15
15
|
* [sinatra](https://github.com/sinatra/sinatra) as the core
|
|
16
|
-
* [sinatra-assetpack](https://github.com/
|
|
16
|
+
* [sinatra-assetpack](https://github.com/rstacruz/sinatra-assetpack) as the assets manager
|
|
17
17
|
* [sinatra-export](https://github.com/hooktstudios/sinatra-export) as the static pages generator
|
|
18
|
-
* [capistrano-s3](github.com/hooktstudios/capistrano-s3.git) as the S3 deployment tool
|
|
18
|
+
* [capistrano-s3](http://github.com/hooktstudios/capistrano-s3.git) as the S3 deployment tool
|
|
19
|
+
|
|
20
|
+
## Contributing
|
|
21
|
+
|
|
22
|
+
See [CONTRIBUTING.md](https://github.com/hooktstudios/sinatra-static-bp/blob/master/CONTRIBUTING.md) for more details on contributing and running test.
|
|
23
|
+
|
|
24
|
+
## Credits
|
|
25
|
+
|
|
26
|
+

|
|
27
|
+
|
|
28
|
+
[sinatra-static-bp](https://rubygems.org/gems/sinatra-static-bp) is maintained and funded by [hooktstudios](https://github.com/hooktstudios)
|
data/lib/skeleton/Gemfile
CHANGED
|
@@ -2,11 +2,8 @@ source 'https://rubygems.org'
|
|
|
2
2
|
ruby '1.9.3'
|
|
3
3
|
|
|
4
4
|
gem 'sinatra', :require => 'sinatra/base'
|
|
5
|
-
gem 'sinatra-assetpack'
|
|
6
|
-
|
|
7
|
-
:require => 'sinatra/assetpack'
|
|
8
|
-
gem 'sinatra-advanced-routes',
|
|
9
|
-
:require => 'sinatra/advanced_routes'
|
|
5
|
+
gem 'sinatra-assetpack'
|
|
6
|
+
gem 'sinatra-advanced-routes'
|
|
10
7
|
gem 'sinatra-export'
|
|
11
8
|
gem 'rake'
|
|
12
9
|
gem 'rack'
|