welaika-suspenders 1.2.7 → 1.2.8

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: 03cb97e9b728cf4650b99347308779168832570c
4
- data.tar.gz: acdc088cee7979da5ba73691305bdc7e798edb5a
3
+ metadata.gz: 3ea1089bbf3fbd64bc4c850f0c1188ddc23d57bf
4
+ data.tar.gz: 03f7ecb165d53aeac67b2f5312ebdc816b238027
5
5
  SHA512:
6
- metadata.gz: a0392fb7b3d8a6b6f28f364a4bb215d43d82b533f7427b1ce0ddc784b5bdc3369848d56f7d4c4440a653febbf5d30d0044ab2569ab27c1fc558999c7dea05629
7
- data.tar.gz: 3ecac02bb90616e9f50f1210c5ca5232ac6d7d6bcc4959a739feffc4538f00b6939fde9af1633008a48d8196e0712be3bcfa0611a79805266dd16c1cd060d144
6
+ metadata.gz: c05284c22000eca12e56cdef7716d60441d76087dfa7f6ea9671bdd60976964f593bb58ed4e85ad83ce64651d0b8b6e56e5466594ba121e60102310b02a95468
7
+ data.tar.gz: 609689d3d6e86a4e7b7159db3dde9d73d479c974a75c0aef44e31d87a9d827daa8f228301cfea98d33d16bcf8a0451abc1513b7ef26c8618ad02ad1228e0d780
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- welaika-suspenders (1.2.7)
4
+ welaika-suspenders (1.2.8)
5
5
  bundler
6
6
  hub
7
7
  rails
@@ -56,7 +56,7 @@ GEM
56
56
  ffi (1.3.1)
57
57
  gherkin (2.9.3)
58
58
  json (>= 1.4.6)
59
- hike (1.2.1)
59
+ hike (1.2.2)
60
60
  hub (1.10.5)
61
61
  i18n (0.6.1)
62
62
  journey (1.0.4)
@@ -108,7 +108,7 @@ GEM
108
108
  tilt (~> 1.1, != 1.3.0)
109
109
  term-ansicolor (1.0.7)
110
110
  thor (0.18.1)
111
- tilt (1.3.6)
111
+ tilt (1.3.7)
112
112
  treetop (1.4.12)
113
113
  polyglot
114
114
  polyglot (>= 0.3.1)
@@ -98,7 +98,7 @@ module WelaikaSuspenders
98
98
  end
99
99
 
100
100
  def setup_presenters
101
- copy_file 'presenters.rb', 'config/initializers/basic_presenter.rb'
101
+ copy_file 'presenters.rb', 'config/initializers/showoff.rb'
102
102
  end
103
103
 
104
104
  def use_postgres_config_template
@@ -210,22 +210,25 @@ module WelaikaSuspenders
210
210
  def gitignore_files
211
211
  concat_file 'suspenders_gitignore', '.gitignore'
212
212
  [
213
+ 'app/assets/images',
213
214
  'app/models',
214
215
  'app/presenters',
215
- 'app/assets/images',
216
+ 'app/services',
216
217
  'db/migrate',
217
218
  'log',
218
- 'spec/support',
219
- 'spec/lib',
220
- 'spec/models',
221
- 'spec/views',
222
219
  'spec/controllers',
223
220
  'spec/features',
224
221
  'spec/helpers',
222
+ 'spec/lib',
223
+ 'spec/models',
225
224
  'spec/presenters',
225
+ 'spec/services',
226
+ 'spec/support',
226
227
  'spec/support/matchers',
227
228
  'spec/support/mixins',
228
- 'spec/support/shared_examples'
229
+ 'spec/support/shared_contexts'
230
+ 'spec/support/shared_examples',
231
+ 'spec/views',
229
232
  ].each do |dir|
230
233
  empty_directory_with_gitkeep dir
231
234
  end
@@ -305,3 +308,4 @@ module WelaikaSuspenders
305
308
  end
306
309
  end
307
310
  end
311
+
@@ -1,3 +1,3 @@
1
1
  module WelaikaSuspenders
2
- VERSION = '1.2.7'
2
+ VERSION = '1.2.8'
3
3
  end
@@ -7,7 +7,7 @@ RSpec.configure do |config|
7
7
  DatabaseCleaner.strategy = :transaction
8
8
  end
9
9
 
10
- config.before(:each, :js => true) do
10
+ config.before(:each, js: true) do
11
11
  DatabaseCleaner.strategy = :deletion
12
12
  end
13
13
 
@@ -19,3 +19,4 @@ RSpec.configure do |config|
19
19
  DatabaseCleaner.clean
20
20
  end
21
21
  end
22
+
@@ -1 +1,3 @@
1
1
  ActionController::Base.send :include, Showcase::Helpers
2
+ ActionView::Base.send :include, Showcase::Helpers
3
+
@@ -1,6 +1,7 @@
1
1
  # http://ddollar.github.com/foreman/
2
2
  RACK_ENV=development
3
3
  PORT=3000
4
+ TIMEOUT_IN_SECONDS=10
4
5
 
5
6
  # required in production and staging
6
7
  # SMTP_ADDRESS=smtp.sendgrid.net
@@ -10,3 +11,4 @@ PORT=3000
10
11
 
11
12
  # required in staging
12
13
  # EMAIL_RECIPIENTS=black-hole@example.com
14
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: welaika-suspenders
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.7
4
+ version: 1.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoughtbot
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-02 00:00:00.000000000 Z
12
+ date: 2013-04-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails