easy_app_helper 1.0.14 → 2.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c82ef641cc334bad13d6ca4d00b5a5a3e5e532b5
4
- data.tar.gz: 1ef7eb9865aef2057084ba5a51dedbf8cfd83d82
3
+ metadata.gz: 23d7222b6e27c900ec97f2f7a9883abbcae4e3a7
4
+ data.tar.gz: 5c3958d362af194d4c44f74153093bc74074e9ed
5
5
  SHA512:
6
- metadata.gz: 5e0ba6fb08caa93e3f2420a8ff8b3d52d966ef58a5a62a5d8ff41f34fe5d9c7a31d71a965303633faf65d5d6a5eaa585f078c58e1bf8415ff9f0cf0db7409bc1
7
- data.tar.gz: 46f3ea2827a0a38a07bdd3980fbf64aeae364c9c6800b3ab2ff58751a58c5769811c54ed260ae1069b5a60690513bea0915af7cd1ea1f49d855db82c65b31fdf
6
+ metadata.gz: 42b3f9ce66bc4bb1cd0f633d83b9150b54bc907ea255e533d021be5835fd810b464ca5ebf85237601604174fed6ec7ca013fe07ab9478087cb123735de8b0b73
7
+ data.tar.gz: 8c12f53068eb99052ca400241823a2ab1fb1c6cbfe6b35e7bb9c5b9c7cdbb594479d15eec83b52b6252aa8a8a833b2577d768c05d3064e34c9c9267480061f20
data/.gitignore ADDED
@@ -0,0 +1,48 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ /pkg/
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/bundler/man
13
+ pkg
14
+ rdoc
15
+ spec/reports
16
+ test/tmp
17
+ test/version_tmp
18
+ tmp
19
+ # Standard
20
+ *~
21
+ # Standard Rails project
22
+ /tmp/
23
+ /log/
24
+ /db/*.sqlite3
25
+ # SASS CSS generation
26
+ /public/stylesheets/.sass-cache/
27
+ # Netbeans
28
+ /nbproject/
29
+ # Sublime Text 2 project
30
+ *.sublime-project
31
+ *.sublime-workspace
32
+ *(copie)*
33
+ # RVM
34
+ .rvmrc
35
+ # VisualRuby
36
+ .vr_settings.yaml
37
+ # Emacs
38
+ *#
39
+ *\#
40
+ \#*
41
+ .#*
42
+ \#*\#
43
+ # Geany
44
+ *.geany
45
+ # RubyMine
46
+ .idea
47
+ #RedCar
48
+ .redcar
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ script:
5
+ - bundle exec rake spec