proton 0.3.2 → 0.3.3
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/HISTORY.md +12 -0
- data/data/new_site/_layouts/default.haml +1 -1
- data/data/new_site/index.haml +1 -1
- data/data/rack/Gemfile +2 -0
- data/lib/proton/cli.rb +9 -0
- data/lib/proton/version.rb +1 -1
- metadata +2 -2
data/HISTORY.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
Proton v0.3.3 - Jul 14, 2011
|
|
2
|
+
----------------------------
|
|
3
|
+
|
|
4
|
+
Small fixes again.
|
|
5
|
+
|
|
6
|
+
### Added:
|
|
7
|
+
* a confirmation message when running 'proton rack'.
|
|
8
|
+
|
|
9
|
+
### Changed:
|
|
10
|
+
* the default site to read 'Proton' instead of 'Hyde' in the default title.
|
|
11
|
+
* Update 'proton rack' to generate Gemfile.lock.
|
|
12
|
+
|
|
1
13
|
Proton v0.3.2 - Jun 22, 2011
|
|
2
14
|
----------------------------
|
|
3
15
|
|
data/data/new_site/index.haml
CHANGED
data/data/rack/Gemfile
CHANGED
data/lib/proton/cli.rb
CHANGED
|
@@ -110,6 +110,15 @@ class CLI < Shake
|
|
|
110
110
|
FileUtils.cp f, '.'
|
|
111
111
|
say_status :create, File.basename(f)
|
|
112
112
|
end
|
|
113
|
+
|
|
114
|
+
err ""
|
|
115
|
+
err "Done! Your project is now Rack-compatible."
|
|
116
|
+
err "Test it out locally by:"
|
|
117
|
+
err ""
|
|
118
|
+
err " $ rackup"
|
|
119
|
+
err ""
|
|
120
|
+
err "You may now use your project as-is in a Rack-compatible environment,"
|
|
121
|
+
err "such as Pow, Heroku or a host that supports Passenger."
|
|
113
122
|
end
|
|
114
123
|
|
|
115
124
|
task.description = "Makes a project Rack-compatible."
|
data/lib/proton/version.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: proton
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.3.
|
|
5
|
+
version: 0.3.3
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Rico Sta. Cruz
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-
|
|
13
|
+
date: 2011-07-15 00:00:00 +08:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|