trevi 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7ac081004547cfce65bcab2164e0d93b739e274
|
4
|
+
data.tar.gz: c612de26b7c6f7a7fe538cd001354819ed63e176
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19733d0661536233106c8a9a0c91b7be42f0a0874b06fe2544397fdb85afada5dbeadf3dfc9b021959009c257b101acf84a311eb1f19878cfbf8051489baccb8
|
7
|
+
data.tar.gz: d9ec0f2fb44bb5b4710e6bfd9c2b0480fc08c8d3a666eb8dc80a25049626970b90509f907053ce6ead6691727ca51ea6ed58d27fe59397ed3960f4deefdd5451
|
data/README.md
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
# Trevi
|
2
2
|
|
3
|
-
|
3
|
+
Trevi is a generator for building an opinionated Sinatra structure.
|
4
4
|
|
5
|
-
|
5
|
+
It includes, amongst other things:
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
And then execute:
|
12
|
-
|
13
|
-
$ bundle
|
14
|
-
|
15
|
-
Or install it yourself as:
|
16
|
-
|
17
|
-
$ gem install trevi
|
7
|
+
* Mountable routes
|
8
|
+
* Sprockets for assets
|
9
|
+
* Sequel for DB
|
18
10
|
|
19
11
|
## Usage
|
20
12
|
|
21
|
-
|
22
|
-
|
23
|
-
## Contributing
|
13
|
+
gem install trevi
|
24
14
|
|
25
|
-
|
26
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
-
5. Create new Pull Request
|
15
|
+
trevi app_name
|
data/lib/trevi/version.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trevi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex MacCaw
|
@@ -82,6 +82,7 @@ files:
|
|
82
82
|
- templates/app/app/extensions/assets.rb.tt
|
83
83
|
- templates/app/app/helpers.rb.tt
|
84
84
|
- templates/app/app/models.rb.tt
|
85
|
+
- templates/app/app/models/.gitkeep
|
85
86
|
- templates/app/app/routes.rb.tt
|
86
87
|
- templates/app/app/routes/assets.rb.tt
|
87
88
|
- templates/app/app/routes/base.rb.tt
|
@@ -92,6 +93,8 @@ files:
|
|
92
93
|
- templates/app/lib/tasks/assets.rb.tt
|
93
94
|
- templates/app/lib/tasks/db.rb.tt
|
94
95
|
- templates/app/public/favicon.ico
|
96
|
+
- templates/app/vendor/assets/javascripts/.gitkeep
|
97
|
+
- templates/app/vendor/assets/stylesheets/.gitkeep
|
95
98
|
- trevi.gemspec
|
96
99
|
homepage: http://github.com/maccman/trevi
|
97
100
|
licenses:
|