creng 0.4.2 → 0.4.3
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.
- data/README.md +10 -1
- data/creng.gemspec +1 -1
- data/lib/creng/version.rb +1 -1
- metadata +4 -2
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Creng 0.4.
|
|
1
|
+
Creng 0.4.2
|
|
2
2
|
=====
|
|
3
3
|
|
|
4
4
|
###Ruby gem for simple chrome extension development###
|
|
@@ -13,6 +13,8 @@ It includes last versions of following frameworks/libs:
|
|
|
13
13
|
|
|
14
14
|
[Installation](https://github.com/traa/creng/wiki/Installation) | [Examples](https://github.com/traa/creng/wiki/Examples) | [Flags](https://github.com/traa/creng/wiki/Flags)
|
|
15
15
|
|
|
16
|
+
[RubyGems page](https://rubygems.org/gems/creng)
|
|
17
|
+
|
|
16
18
|
|
|
17
19
|
|
|
18
20
|
### Usage ###
|
|
@@ -39,4 +41,11 @@ Must be executed in root folder of projectname. It builds entire project to **bu
|
|
|
39
41
|
* Override new tab, bookmarks and history pages simply by creating html files with the same name (more at [examples page](https://github.com/traa/creng/wiki/Examples))
|
|
40
42
|
* Cut in build version marked blocks of code ( blocks marked with `//devblock_begin` and `//devblock_end`.
|
|
41
43
|
* Automatically removing all console.* calls in build.
|
|
44
|
+
|
|
42
45
|
* And more to come! It's just an early version of gem, so i plan to constantly increase number of features
|
|
46
|
+
|
|
47
|
+
Adding features
|
|
48
|
+
------------
|
|
49
|
+
` creng feature add webrequest `
|
|
50
|
+
|
|
51
|
+
Adding [webRequest](https://developer.chrome.com/extensions/webRequest.html) functionality in a few seconds.
|
data/creng.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.email = ["stagedown@gmail.com"]
|
|
10
10
|
s.homepage = "http://markeeper.ru"
|
|
11
11
|
s.summary = %q{Create chrome extension with ease}
|
|
12
|
-
s.description = %q{Using this gem, you can create chrome extension skeleton with no troubles}
|
|
12
|
+
s.description = %q{Using this gem, you can create chrome extension skeleton with no troubles. The aim of project to make development of chrome extensions more simple, giving to user time-tested tools and development patterns.}
|
|
13
13
|
|
|
14
14
|
s.rubyforge_project = "creng"
|
|
15
15
|
|
data/lib/creng/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: creng
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -27,7 +27,9 @@ dependencies:
|
|
|
27
27
|
- - ~>
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: 0.3.10
|
|
30
|
-
description: Using this gem, you can create chrome extension skeleton with no troubles
|
|
30
|
+
description: Using this gem, you can create chrome extension skeleton with no troubles.
|
|
31
|
+
The aim of project to make development of chrome extensions more simple, giving
|
|
32
|
+
to user time-tested tools and development patterns.
|
|
31
33
|
email:
|
|
32
34
|
- stagedown@gmail.com
|
|
33
35
|
executables:
|