ule_page 0.0.3 → 0.0.4
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 +4 -4
- data/.coveralls.yml +1 -0
- data/.travis.yml +12 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +11 -2
- data/README.md +5 -0
- data/lib/ule_page/version.rb +1 -1
- data/ule_page.gemspec +0 -1
- metadata +3 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36fa66248af7d1002938e7cf91cc353abe51c01d
|
4
|
+
data.tar.gz: fb022ac62032f93136a6660b3784415ef3ed5bf2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5d95f0eed1335f829a76f8d2757fe53bc271d9c7866778af85e0aa2973d2f78f1220af6b9ac0542634b7838191495e97636a8d027c6ad6f65c7b1e3a67cbf66
|
7
|
+
data.tar.gz: 9509506e2ad8710b374788e2d3c0c996e83929e5c1cb8798241bee3219081698e777a83c7cc56469628634c6df650eb3fda4324a8aa37a46e2bef9a58ae1ec08
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
repo_token: iYdE1JsFQ5UjoOfl4kLDjSffQUH7X93XP
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ule_page (0.0.
|
4
|
+
ule_page (0.0.4)
|
5
5
|
activerecord (> 4.0)
|
6
6
|
activesupport (> 4.0)
|
7
7
|
capybara (>= 2.1, < 3.0)
|
@@ -57,6 +57,12 @@ GEM
|
|
57
57
|
rack-test (>= 0.5.4)
|
58
58
|
xpath (~> 2.0)
|
59
59
|
concurrent-ruby (1.0.0)
|
60
|
+
coveralls (0.8.13)
|
61
|
+
json (~> 1.8)
|
62
|
+
simplecov (~> 0.11.0)
|
63
|
+
term-ansicolor (~> 1.3)
|
64
|
+
thor (~> 0.19.1)
|
65
|
+
tins (~> 1.6.0)
|
60
66
|
cucumber (1.3.20)
|
61
67
|
builder (>= 2.1.2)
|
62
68
|
diff-lcs (>= 1.1.3)
|
@@ -150,8 +156,11 @@ GEM
|
|
150
156
|
actionpack (>= 4.0)
|
151
157
|
activesupport (>= 4.0)
|
152
158
|
sprockets (>= 3.0.0)
|
159
|
+
term-ansicolor (1.3.2)
|
160
|
+
tins (~> 1.0)
|
153
161
|
thor (0.19.1)
|
154
162
|
thread_safe (0.3.5)
|
163
|
+
tins (1.6.0)
|
155
164
|
tzinfo (1.2.2)
|
156
165
|
thread_safe (~> 0.1)
|
157
166
|
xpath (2.0.0)
|
@@ -163,8 +172,8 @@ PLATFORMS
|
|
163
172
|
|
164
173
|
DEPENDENCIES
|
165
174
|
activerecord (>= 3.0.0)
|
166
|
-
activesupport
|
167
175
|
bundler (~> 1.11)
|
176
|
+
coveralls
|
168
177
|
cucumber (~> 1.3.15)
|
169
178
|
rails
|
170
179
|
rake (~> 10.0)
|
data/README.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# UlePage
|
2
2
|
|
3
|
+
[](https://badge.fury.io/rb/ule_page)
|
4
|
+
[](https://travis-ci.org/jerecui/ule_page)
|
5
|
+
[](https://coveralls.io/r/jerecui/ule_page?branch=master)
|
6
|
+
[](http://opensource.org/licenses/MIT)
|
7
|
+
|
3
8
|
Welcome to UlePage gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ule_page`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
9
|
|
5
10
|
Using UlePage, you can define page model object easily and the gem can match the current url to the specific page model with 'pg' method. e.g.
|
data/lib/ule_page/version.rb
CHANGED
data/ule_page.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ule_page
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Cui
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,20 +38,6 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: activesupport
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: site_prism
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -234,6 +220,7 @@ executables: []
|
|
234
220
|
extensions: []
|
235
221
|
extra_rdoc_files: []
|
236
222
|
files:
|
223
|
+
- ".coveralls.yml"
|
237
224
|
- ".gitignore"
|
238
225
|
- ".rspec"
|
239
226
|
- ".travis.yml"
|