humane-rails 5.0.0 → 5.0.1
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.
- checksums.yaml +8 -8
- data/humane-rails.gemspec +25 -0
- data/lib/humane-rails/version.rb +1 -1
- data/spec/internal/log/test.log +32 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YmI0NzAwYjFlOTU3ZGUwOGM5MzlhZjMxYjExOTRmMzQ4NTBmM2MwZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YjU5NmQwYWY3OTc0MDQxNmRkMWVlOTcyY2M0MmE3MzViZTY2NGY1Zg==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZDlkMTU2MWJkNmUxNDJiOGQ5Mjk5NmY0NjJlODkwM2VjMTg2YzFiNzY4M2Rh
|
|
10
|
+
MDBjZjliNmE1M2NmNDUzNTNlMzgzNDI3ZTU1NmVhMzY0MDhlZmY1YjdiNTI1
|
|
11
|
+
YTg2YWZmYzhkYTVkYTRlN2Y5M2M4NjAxMTI4NGFjMzc3YTczMzk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NTRkYWQ3Njk3ODc1OGM4Y2Y2MzZmZDY4NTQ3ZTQzODBkMjFlNTdmNGI0NDNh
|
|
14
|
+
MmRiMTI1ZTY4ZTk4YmM1YTc1Y2VhOGQ3ZWEyOWZhNmU4ZGZlYTgzODA0Mjhh
|
|
15
|
+
ZTNhYTg5OTBmNzBlN2I0MDg2ODI0YjY3OGNkMTZmZWM4NDNjMzc=
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "humane-rails/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "humane-rails"
|
|
7
|
+
s.version = HumaneRails::VERSION
|
|
8
|
+
s.authors = ["Martin Harrigan"]
|
|
9
|
+
s.email = ["martinharrigan@gmail.com"]
|
|
10
|
+
s.homepage = "http://github.com/harrigan/humane-rails"
|
|
11
|
+
s.summary = %q{A gemified version of Marc Harter's humane-js.}
|
|
12
|
+
s.description = %q{A gemified version of Marc Harter's humane-js.}
|
|
13
|
+
s.license = "MIT"
|
|
14
|
+
|
|
15
|
+
s.files = Dir["{app,lib}/**/*", "Rakefile", "README.md", "humane-rails.gemspec"]
|
|
16
|
+
s.test_files = Dir["spec/**/*"]
|
|
17
|
+
|
|
18
|
+
s.add_dependency "rails", ">= 3.1.0"
|
|
19
|
+
|
|
20
|
+
s.add_development_dependency "rails", "~> 3.1.0"
|
|
21
|
+
s.add_development_dependency "rspec-rails"
|
|
22
|
+
s.add_development_dependency "capybara"
|
|
23
|
+
s.add_development_dependency "poltergeist"
|
|
24
|
+
s.add_development_dependency "combustion"
|
|
25
|
+
end
|
data/lib/humane-rails/version.rb
CHANGED
data/spec/internal/log/test.log
CHANGED
|
@@ -2289,3 +2289,35 @@ Served asset /application.css - 304 Not Modified (0ms)
|
|
|
2289
2289
|
|
|
2290
2290
|
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:48:40 +0000
|
|
2291
2291
|
Served asset /application.js - 304 Not Modified (0ms)
|
|
2292
|
+
|
|
2293
|
+
|
|
2294
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 20:21:29 +0000
|
|
2295
|
+
Processing by FlashController#index as HTML
|
|
2296
|
+
Rendered flash/index.html.erb within layouts/application (2.5ms)
|
|
2297
|
+
Completed 200 OK in 41ms (Views: 38.2ms)
|
|
2298
|
+
|
|
2299
|
+
|
|
2300
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 20:21:29 +0000
|
|
2301
|
+
Served asset /application.css - 200 OK (13ms)
|
|
2302
|
+
|
|
2303
|
+
|
|
2304
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 20:21:29 +0000
|
|
2305
|
+
Served asset /application.js - 200 OK (5ms)
|
|
2306
|
+
|
|
2307
|
+
|
|
2308
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 20:21:30 +0000
|
|
2309
|
+
Processing by FlashController#index as HTML
|
|
2310
|
+
Rendered flash/index.html.erb within layouts/application (0.5ms)
|
|
2311
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
|
2312
|
+
|
|
2313
|
+
|
|
2314
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 20:21:32 +0000
|
|
2315
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
2316
|
+
|
|
2317
|
+
|
|
2318
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 20:21:41 +0000
|
|
2319
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
2320
|
+
|
|
2321
|
+
|
|
2322
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 20:21:46 +0000
|
|
2323
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: humane-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Harrigan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-12-
|
|
11
|
+
date: 2013-12-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -113,6 +113,7 @@ files:
|
|
|
113
113
|
- lib/humane-rails.rb
|
|
114
114
|
- Rakefile
|
|
115
115
|
- README.md
|
|
116
|
+
- humane-rails.gemspec
|
|
116
117
|
- spec/internal/app/assets/javascripts/application.js
|
|
117
118
|
- spec/internal/app/assets/stylesheets/application.css
|
|
118
119
|
- spec/internal/app/controllers/application_controller.rb
|