pah 0.0.11 → 0.0.12

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: e443008c366c4a377139c6e6ee0fad0f11867f07
4
- data.tar.gz: bded89719d4e6696e84315d903206ef9011f9f11
3
+ metadata.gz: 62f4c7bfec67bb4a781b5904210aa5353fedf874
4
+ data.tar.gz: c49595c6a692bf9a762663226b0231ce85e6f676
5
5
  SHA512:
6
- metadata.gz: 886c4c764e41b25bbbaf2669228464ec4a1c774a35324e575c34d69d9c6fca4235b29ef82fa98053588c22c193a3bf550eeab8ebd0df23d0211d5364160d403b
7
- data.tar.gz: b98a5f949e9ae291ef0d3c7360e787fe706db4371b548d0e8de20607bee90c6c9ee118fa5f0768234b972d7c2907b9da5df87e781ca85985bb327c1db52852c1
6
+ metadata.gz: 12410f1e68b066c10ed68550353db7d9eb8f8b019e052d60abf18fd9e39d2532b12092fa6b8ac9e05bd8bdd839da68b034ab43acd0eb30c9b724ad804e555fb6
7
+ data.tar.gz: f9da3dc0d37ec4b7a2d41cb737492b2dbd519864db8907ef39938c2593f3ff6e282da112507524ef539bd7b0499a6137e7a0535d0992acfdd224d07b6ebb69b8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.12 (January 16, 2014)
4
+
5
+ ### improvements
6
+
7
+ - Update jumpup to version 0.0.2
8
+
3
9
  ## 0.0.11 (January 8, 2014)
4
10
 
5
11
  ### features
@@ -8,6 +14,7 @@
8
14
  - Created a default JS file;
9
15
  - Created CSS and JS for Hint;
10
16
  - Created focus effect on fields;
17
+ - Add robots.txt
11
18
 
12
19
  ### improvements
13
20
 
@@ -17,14 +17,13 @@ gem 'rack-canonical-host', '0.0.8'
17
17
  gem 'bourbon', '3.1.8'
18
18
  gem 'simple_form', '3.0.1'
19
19
 
20
-
21
20
  group :production do
22
21
  gem 'rails_12factor', '0.0.2'
23
22
  end
24
23
 
25
24
  group :development do
26
25
  gem 'foreman', '0.63.0'
27
- gem 'jumpup', '0.0.1'
26
+ gem 'jumpup', '0.0.2'
28
27
  gem 'jumpup-heroku', github: 'Helabs/jumpup-heroku'
29
28
  gem 'better_errors', '1.0.1'
30
29
  gem 'binding_of_caller', '0.7.2'
@@ -44,4 +44,8 @@ When you finish an implementation, run:
44
44
 
45
45
  ```$ rake integrate```
46
46
 
47
- This task will run all tasks described on 'jumpup.rake' file, check the file and verify the steps.
47
+ This task will run all tasks described on 'jumpup.rake' file, check the file and verify the steps.
48
+
49
+ ## Configuring domain on Heroku
50
+
51
+ Check out this [wiki](https://github.com/Helabs/pah/wiki/Configuring-domain-on-Heroku) with detailed instruction of how to use the canonical_host to redirect your naked domain to your real app.
@@ -0,0 +1,4 @@
1
+ User-agent: *
2
+ Disallow: /admin/
3
+ Disallow: /auth/
4
+ Disallow: /logout
@@ -0,0 +1,11 @@
1
+ puts "Adding public files ...".magenta
2
+
3
+ inside "public" do
4
+ remove_file "robots.txt"
5
+ end
6
+
7
+ copy_static_file 'public/robots.txt'
8
+
9
+ git :add => '--all'
10
+ git :commit => "-aqm 'Add public files.'"
11
+ puts "\n"
data/lib/pah/template.rb CHANGED
@@ -58,6 +58,7 @@ apply_n :database
58
58
  apply_n :rspec
59
59
  apply_n :layout
60
60
  apply_n :assets
61
+ apply_n :public
61
62
  apply_n :secure_headers
62
63
  apply_n :secret_token
63
64
  apply_n :capybara
data/lib/pah/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pah
2
- VERSION = "0.0.11"
2
+ VERSION = "0.0.12"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pah
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - HE:labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-08 00:00:00.000000000 Z
11
+ date: 2014-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -107,6 +107,7 @@ files:
107
107
  - lib/pah/files/config/locales/pt-BR.yml
108
108
  - lib/pah/files/config/unicorn.rb
109
109
  - lib/pah/files/lib/tasks/jumpup.rake
110
+ - lib/pah/files/public/robots.txt
110
111
  - lib/pah/files/spec/acceptance/dummy_spec.rb
111
112
  - lib/pah/files/spec/spec_helper.rb
112
113
  - lib/pah/files/spec/support/README
@@ -136,6 +137,7 @@ files:
136
137
  - lib/pah/partials/_layout.rb
137
138
  - lib/pah/partials/_letter_opener.rb
138
139
  - lib/pah/partials/_locale.rb
140
+ - lib/pah/partials/_public.rb
139
141
  - lib/pah/partials/_readme.rb
140
142
  - lib/pah/partials/_rspec.rb
141
143
  - lib/pah/partials/_ruby_env.rb
@@ -165,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
167
  version: '0'
166
168
  requirements: []
167
169
  rubyforge_project:
168
- rubygems_version: 2.2.0
170
+ rubygems_version: 2.2.0.rc.1
169
171
  signing_key:
170
172
  specification_version: 4
171
173
  summary: A rails application template which born from Startup DEV and now is used